Files
opencode-config/oh-my-opencode.jsonc
imbytecat bbb632f5ce refactor: 统一模型配置并更新代理与分类模型设置
- 更新所有代理和分类的模型配置,统一使用新的CPA模型标识并新增未指定级别的高低优先级模型设置。
- 移除旧的 GLM 和 Claude 模型配置,替换为新的 Packy OpenAI 模型配置,并更新模型名称和版本。
2026-01-26 20:51:06 +08:00

57 lines
1.4 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/code-yeongyu/oh-my-opencode/master/assets/oh-my-opencode.schema.json",
"agents": {
"sisyphus": {
// Primary orchestrator
"model": "cpa-anthropic/claude-opus-4-5-thinking"
},
"prometheus": {
// Strategic planning
"model": "cpa-anthropic/claude-opus-4-5-thinking"
},
"atlas": {
// Master orchestrator
"model": "cpa-anthropic/claude-opus-4-5-thinking"
},
"oracle": {
// Consultation, debugging
"model": "cpa-openai/gpt-5.2"
},
"librarian": {
// Docs, GitHub search
"model": "cpa-google/gemini-3-flash"
},
"explore": {
// Fast codebase grep
"model": "cpa-google/gemini-3-flash"
},
"multimodal-looker": {
// PDF/image analysis
"model": "cpa-google/gemini-3-flash"
}
},
"categories": {
"visual-engineering": {
"model": "cpa-google/gemini-3-pro-high"
},
"ultrabrain": {
"model": "cpa-openai/gpt-5.2-codex"
},
"artistry": {
"model": "cpa-google/gemini-3-pro-high"
},
"quick": {
"model": "cpa-google/gemini-3-flash"
},
"unspecified-low": {
"model": "cpa-anthropic/claude-sonnet-4-5"
},
"unspecified-high": {
"model": "cpa-anthropic/claude-opus-4-5-thinking"
},
"writing": {
"model": "cpa-google/gemini-3-flash"
}
}
}