From c96febfac5c3ac06b303526010d7e94a0466365f Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Thu, 8 Jan 2026 09:37:04 -0500 Subject: [PATCH] chore(cli): change default model to anthropic/claude-opus-4.5 --- apps/cli/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cli/src/index.ts b/apps/cli/src/index.ts index 15a2786ef4..43a94f8a7d 100644 --- a/apps/cli/src/index.ts +++ b/apps/cli/src/index.ts @@ -21,7 +21,7 @@ import { getEnvVarName, getApiKeyFromEnv, getDefaultExtensionPath } from "./util const DEFAULTS = { mode: "code", reasoningEffort: "medium" as const, - model: "anthropic/claude-sonnet-4.5", + model: "anthropic/claude-opus-4.5", } const REASONING_EFFORTS = [...reasoningEffortsExtended, "unspecified", "disabled"]