-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig-sample.json
More file actions
40 lines (40 loc) · 964 Bytes
/
Copy pathconfig-sample.json
File metadata and controls
40 lines (40 loc) · 964 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
{
"profiles": {
"ollama-local": {
"model": "gemma4",
"base_url": "http://localhost:11434/v1",
"api_key": "",
"auth_token": "ollama"
},
"openrouter": {
"base_url": "https://openrouter.ai/api",
"auth_token": "${OPENROUTER_API_KEY}",
"default": "deepseek-v4-pro",
"models": {
"owl-alpha": {
"id": "openrouter/owl-alpha",
"slot": "opus"
},
"deepseek-v4-pro": {
"id": "deepseek/deepseek-v4-pro",
"slot": "sonnet"
},
"deepseek-v4-flash": {
"id": "deepseek/deepseek-v4-flash",
"slot": "haiku"
},
"kimi": {
"id": "moonshotai/kimi-k2.6",
"slot": "custom",
"description": "Moonshot Kimi K2.6"
},
"gemma-4-26b": {
"id": "google/gemma-4-26b-a4b-it"
},
"glm-5.1": {
"id": "z-ai/glm-5.1"
}
}
}
}
}