forked from imbytecat/opencode-config
- 更新模型配置,将文档与GitHub搜索使用的模型改为opencode/big-pickle,将代码库快速搜索模型改为opencode/gpt-5-nano,将多模态查看模型保持不变。
40 lines
1022 B
JSON
40 lines
1022 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json",
|
|
"agents": {
|
|
"sisyphus": {
|
|
// Primary orchestrator
|
|
"model": "anthropic-gateway/claude-sonnet-4-5"
|
|
},
|
|
"prometheus": {
|
|
// Strategic planning
|
|
"model": "anthropic-gateway/claude-opus-4-5-thinking"
|
|
},
|
|
"atlas": {
|
|
// Master orchestrator
|
|
"model": "anthropic-gateway/claude-sonnet-4-5"
|
|
},
|
|
"oracle": {
|
|
// Consultation, debugging
|
|
"model": "openai-gateway/gpt-5.2"
|
|
},
|
|
"librarian": {
|
|
// Docs, GitHub search
|
|
"model": "opencode/big-pickle"
|
|
},
|
|
"explore": {
|
|
// Fast codebase grep
|
|
"model": "opencode/gpt-5-nano"
|
|
},
|
|
"multimodal-looker": {
|
|
// PDF/image analysis
|
|
"model": "google-gateway/gemini-3-flash"
|
|
},
|
|
"frontend-ui-ux-engineer": {
|
|
"model": "google-gateway/gemini-3-pro-high"
|
|
},
|
|
"document-writer": {
|
|
"model": "google-gateway/gemini-3-flash"
|
|
}
|
|
}
|
|
}
|