forked from SurgeSeeker/ocgo2cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
30 lines (30 loc) · 807 Bytes
/
Copy pathconfig.example.json
File metadata and controls
30 lines (30 loc) · 807 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
{
"listen": "127.0.0.1:3457",
"opencode_base_url": "https://opencode.ai/zen/go/v1/chat/completions",
"opencode_anthropic_base_url": "https://opencode.ai/zen/go/v1/messages",
"api_key": "${OC_API_KEY}",
"models": {
"claude-sonnet-4-20250514": {
"model_id": "deepseek-v4-pro",
"temperature": 0.7,
"max_tokens": 8192,
"reasoning_effort": "max",
"thinking": {"type": "enabled"}
},
"claude-opus-4-6-20250514": {
"model_id": "kimi-k2.6",
"temperature": 0.7,
"max_tokens": 8192
},
"claude-haiku-4-5-20250514": {
"model_id": "qwen3.6-plus",
"temperature": 0.5,
"max_tokens": 2048
},
"claude-opus-4-5-20250514": {
"model_id": "minimax-m2.5",
"temperature": 0.7,
"max_tokens": 16384
}
}
}