Restore model to claude-opus-4-5 with thinking enabled, fix maxTokens to 64000 (correct max output for Opus 4.5 per Anthropic docs)

🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
This commit is contained in:
YeonGyu-Kim
2025-12-15 19:02:31 +09:00
parent 25f9d01ef3
commit dad2a76d46
+6 -2
View File
@@ -568,8 +568,12 @@ export const omoAgent: AgentConfig = {
description: description:
"Powerful AI orchestrator for OpenCode. Plans obsessively with todos, assesses search complexity before exploration, delegates strategically to specialized agents. Uses explore for internal code (parallel-friendly), librarian only for external docs, and always delegates UI work to frontend engineer.", "Powerful AI orchestrator for OpenCode. Plans obsessively with todos, assesses search complexity before exploration, delegates strategically to specialized agents. Uses explore for internal code (parallel-friendly), librarian only for external docs, and always delegates UI work to frontend engineer.",
mode: "primary", mode: "primary",
model: "anthropic/claude-sonnet-4-20250514", model: "anthropic/claude-opus-4-5",
maxTokens: 16000, thinking: {
type: "enabled",
budgetTokens: 32000,
},
maxTokens: 64000,
prompt: OMO_SYSTEM_PROMPT, prompt: OMO_SYSTEM_PROMPT,
color: "#00CED1", color: "#00CED1",
} }