From 906d3040a93ca741ccd856a54308389d6f265591 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Mon, 15 Dec 2025 19:02:31 +0900 Subject: [PATCH] Restore model to claude-opus-4-5 with thinking enabled, fix maxTokens to 64000 (correct max output for Opus 4.5 per Anthropic docs) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with assistance of [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode) --- src/agents/omo.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/agents/omo.ts b/src/agents/omo.ts index 84995eb..d676cc9 100644 --- a/src/agents/omo.ts +++ b/src/agents/omo.ts @@ -568,8 +568,12 @@ export const omoAgent: AgentConfig = { 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.", mode: "primary", - model: "anthropic/claude-sonnet-4-20250514", - maxTokens: 16000, + model: "anthropic/claude-opus-4-5", + thinking: { + type: "enabled", + budgetTokens: 32000, + }, + maxTokens: 64000, prompt: OMO_SYSTEM_PROMPT, color: "#00CED1", }