Skip to content

Commit 06b2518

Browse files
feat(cli): update default model from Opus 4.5 to Opus 4.6 (#11273)
Co-authored-by: Roo Code <roomote@roocode.com>
1 parent 8ef61bd commit 06b2518

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ Tokens are valid for 90 days. The CLI will prompt you to re-authenticate when yo
158158
| `-y, --yes, --dangerously-skip-permissions` | Auto-approve all actions (use with caution) | `false` |
159159
| `-k, --api-key <key>` | API key for the LLM provider | From env var |
160160
| `--provider <provider>` | API provider (roo, anthropic, openai, openrouter, etc.) | `openrouter` (or `roo` if authenticated) |
161-
| `-m, --model <model>` | Model to use | `anthropic/claude-opus-4.5` |
161+
| `-m, --model <model>` | Model to use | `anthropic/claude-opus-4.6` |
162162
| `--mode <mode>` | Mode to start in (code, architect, ask, debug, etc.) | `code` |
163163
| `-r, --reasoning-effort <effort>` | Reasoning effort level (unspecified, disabled, none, minimal, low, medium, high, xhigh) | `medium` |
164164
| `--ephemeral` | Run without persisting state (uses temporary storage) | `false` |

apps/cli/src/lib/storage/__tests__/settings.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ describe("Settings Storage", () => {
103103
await saveSettings({
104104
mode: "architect",
105105
provider: "anthropic" as const,
106-
model: "claude-opus-4.5",
106+
model: "claude-opus-4.6",
107107
reasoningEffort: "medium" as const,
108108
})
109109

@@ -112,7 +112,7 @@ describe("Settings Storage", () => {
112112

113113
expect(settings.mode).toBe("architect")
114114
expect(settings.provider).toBe("anthropic")
115-
expect(settings.model).toBe("claude-opus-4.5")
115+
expect(settings.model).toBe("claude-opus-4.6")
116116
expect(settings.reasoningEffort).toBe("medium")
117117
})
118118

apps/cli/src/types/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { reasoningEffortsExtended } from "@roo-code/types"
33
export const DEFAULT_FLAGS = {
44
mode: "code",
55
reasoningEffort: "medium" as const,
6-
model: "anthropic/claude-opus-4.5",
6+
model: "anthropic/claude-opus-4.6",
77
}
88

99
export const REASONING_EFFORTS = [...reasoningEffortsExtended, "unspecified", "disabled"]

0 commit comments

Comments
 (0)