-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopencode.json
More file actions
53 lines (53 loc) · 1.41 KB
/
Copy pathopencode.json
File metadata and controls
53 lines (53 loc) · 1.41 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
{
"$schema": "https://opencode.ai/config.json",
"provider": {
"opencode": {
"models": {
"deepseek-v4-flash-free": {
"variants": {
"max": {
"reasoningEffort": "max",
"textVerbosity": "low",
"reasoningSummary": "auto"
}
}
},
"mimo-v2.5-free": {
"variants": {
"high": {
"reasoningEffort": "high",
"textVerbosity": "low"
}
}
},
"bigpickle-free": {
"variants": {
"high": {
"thinking": {
"type": "enabled",
"budgetTokens": 32000
}
}
}
}
}
}
},
"agent": {
"plan": {
"model": "opencode/deepseek-v4-flash-free",
"variant": "max",
"prompt": "You are a strategic planner. Think deeply and thoroughly at maximum thinking level before proposing plans."
},
"build": {
"model": "opencode/mimo-v2.5-free",
"variant": "high",
"prompt": "You are a focused executor. Implement changes precisely and efficiently with high reasoning."
},
"oracle": {
"model": "opencode/bigpickle-free",
"variant": "high",
"prompt": "You are a code reviewer. Analyze code critically for bugs, security issues, and quality problems with thorough reasoning."
}
}
}