-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllm_models.example.json
More file actions
47 lines (47 loc) · 944 Bytes
/
Copy pathllm_models.example.json
File metadata and controls
47 lines (47 loc) · 944 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"connections": {
"deepseek": {
"provider": "openai_compatible",
"label": "DeepSeek",
"base_url": "https://api.deepseek.com/v1",
"api_key_env": "LLM_DEEPSEEK_API_KEY"
},
"glm": {
"provider": "openai_compatible",
"label": "智谱 GLM",
"base_url": "https://open.bigmodel.cn/api/paas/v4",
"api_key_env": "LLM_GLM_API_KEY",
"timeout_seconds": 300,
"max_retries": 2
}
},
"defaults": {
"connection": "deepseek",
"model_id": "deepseek-chat",
"timeout_seconds": 300,
"max_retries": 2,
"request": {
"response_format": {
"type": "json_object"
},
"extra_body": {}
}
},
"agents": {
"filter": {
"request": {
"temperature": 0.3
}
},
"arbiter": {
"request": {
"temperature": 0.0
}
},
"draft": {
"request": {
"temperature": 0.0
}
}
}
}