-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
37 lines (37 loc) · 886 Bytes
/
Copy pathopencode.json
File metadata and controls
37 lines (37 loc) · 886 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
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"ollama": {
"npm": "@ai-sdk/openai-compatible",
"options": {
"baseURL": "http://localhost:11434/v1"
},
"models": {
"gpt-oss-120b": {
"name": "GPT-OSS 120B - local",
"tools": true,
"reasoning": true,
"options": {}
},
"gpt-oss-opencode:latest": {
"name": "GPT-OSS 20B - local",
"tools": true,
"reasoning": true,
"options": {}
},
"qwen3-coder-local": {
"name": "Qwen3 - local",
"tools": true,
"reasoning": true,
"options": { "num_ctx": 128000 }
},
"deepseekR1t": {
"name": "Deepseek - local",
"tools": true,
"reasoning": true,
"options": {}
}
}
}
}
}