-
-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathopencode.json
More file actions
57 lines (57 loc) 路 1.17 KB
/
Copy pathopencode.json
File metadata and controls
57 lines (57 loc) 路 1.17 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
47
48
49
50
51
52
53
54
55
56
57
{
"$schema": "https://opencode.ai/config.json",
"model": "ollama/qwen3-coder-30b-64k",
"small_model": "ollama/qwen3-coder-30b-64k",
"default_agent": "build",
"provider": {
"ollama": {
"npm": "@ai-sdk/openai-compatible",
"name": "Ollama (local)",
"options": {
"baseURL": "http://localhost:11434/v1"
},
"models": {
"qwen3-coder-30b-64k": {
"name": "Qwen3 Coder (fast)",
"limit": {
"context": 65536,
"output": 16384
}
},
"qwen3-coder-next-32k": {
"name": "Qwen3 Coder (smart)",
"limit": {
"context": 32768,
"output": 16384
}
}
}
}
},
"agent": {
"build": {
"model": "ollama/qwen3-coder-30b-64k",
"temperature": 0.1
},
"plan": {
"model": "ollama/qwen3-coder-next-32k",
"temperature": 0.1
}
},
"compaction": {
"auto": true,
"prune": true,
"reserved": 12000
},
"watcher": {
"ignore": [
"node_modules/**",
"dist/**",
"build/**",
".git/**",
"coverage/**",
"target/**",
".next/**"
]
}
}