forked from xianyu110/awesome-openclaw-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmulti-model-config.json
More file actions
46 lines (46 loc) · 1.03 KB
/
Copy pathmulti-model-config.json
File metadata and controls
46 lines (46 loc) · 1.03 KB
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
{
"models": {
"default": "deepseek-chat",
"code": "deepseek-coder",
"longContext": "kimi",
"vision": "gpt-4-vision",
"streaming": true,
"timeout": 60000,
"providers": {
"deepseek": {
"apiKey": "YOUR_DEEPSEEK_API_KEY",
"baseURL": "https://api.deepseek.com",
"models": {
"deepseek-chat": {
"maxTokens": 4000,
"temperature": 0.7
},
"deepseek-coder": {
"maxTokens": 8000,
"temperature": 0.2
}
}
},
"moonshot": {
"apiKey": "YOUR_MOONSHOT_API_KEY",
"baseURL": "https://api.moonshot.cn",
"models": {
"kimi": {
"maxTokens": 200000,
"temperature": 0.7
}
}
},
"openai": {
"apiKey": "YOUR_OPENAI_API_KEY",
"baseURL": "https://api.openai.com",
"models": {
"gpt-4-vision": {
"maxTokens": 4000,
"temperature": 0.7
}
}
}
}
}
}