Skip to content

Commit 906d304

Browse files
committed
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)
1 parent 424723f commit 906d304

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/agents/omo.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -568,8 +568,12 @@ export const omoAgent: AgentConfig = {
568568
description:
569569
"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.",
570570
mode: "primary",
571-
model: "anthropic/claude-sonnet-4-20250514",
572-
maxTokens: 16000,
571+
model: "anthropic/claude-opus-4-5",
572+
thinking: {
573+
type: "enabled",
574+
budgetTokens: 32000,
575+
},
576+
maxTokens: 64000,
573577
prompt: OMO_SYSTEM_PROMPT,
574578
color: "#00CED1",
575579
}

0 commit comments

Comments
 (0)