Files
opencode-config/oh-my-opencode.jsonc
imbytecat 4f57e21c7e feat: 将 librarians 和 explore 模块模型配置切换为 gemini-3-flash
- 将 librarians 和 explore 模块的模型配置切换为使用 gemini-3-flash。
2026-01-26 14:20:13 +08:00

58 lines
1.5 KiB
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-sonnet-4-5"
},
"atlas": {
// Master orchestrator
"model": "anthropic-gateway/claude-sonnet-4-5"
},
"oracle": {
// Consultation, debugging
"model": "openai-gateway/gpt-5.2"
},
"librarian": {
// Docs, GitHub search
// "model": "glm-coding-plan/glm-4.7"
"model": "google-gateway/gemini-3-flash"
},
"explore": {
// Fast codebase grep
// "model": "opencode/gpt-5-nano"
"model": "google-gateway/gemini-3-flash"
},
"multimodal-looker": {
// PDF/image analysis
"model": "google-gateway/gemini-3-flash"
}
},
"categories": {
"visual-engineering": {
// 前端 UI/UX 设计任务
"model": "google-gateway/gemini-3-pro-high"
},
"ultrabrain": {
// 深度逻辑推理、复杂架构决策
"model": "openai-gateway/gpt-5.2-codex"
},
"artistry": {
// 艺术创作任务
"model": "google-gateway/gemini-3-pro-high"
},
"quick": {
// 简单快速任务
"model": "google-gateway/gemini-3-flash"
},
"writing": {
// 文档写作任务
"model": "google-gateway/gemini-3-flash"
}
}
}