-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathopencode.jsonc.example
More file actions
18 lines (18 loc) · 983 Bytes
/
Copy pathopencode.jsonc.example
File metadata and controls
18 lines (18 loc) · 983 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"$schema": "https://opencode.ai/config.json",
// Set the default agent and primary model
"model": "your-provider/strong-model",
"default_agent": "solo",
// Map each agent to a model. Variant controls reasoning depth (provider-specific).
// Recommended: max for solo/verify, high for reviewer/general, medium for explore/editor.
// Tested with: deepseek/deepseek-v4-pro (strong) + deepseek/deepseek-v4-flash (fast)
"agent": {
"solo": { "model": "your-provider/strong-model", "variant": "max" },
"verify": { "model": "your-provider/strong-model", "variant": "max" },
"reviewer": { "model": "your-provider/strong-model", "variant": "high" },
"general": { "model": "your-provider/strong-model", "variant": "high" },
"explore": { "model": "your-provider/fast-model", "variant": "medium" },
"editor": { "model": "your-provider/fast-model", "variant": "medium" },
"observer": { "model": "your-provider/vision-model" }
}
}