From c366c8f1853741c5cd9287d5953c45271911063a Mon Sep 17 00:00:00 2001 From: Axiom Bot <0xAxiom@users.noreply.github.com> Date: Thu, 30 Apr 2026 23:22:08 -0700 Subject: [PATCH] fix(cli): update default model from claude-sonnet-4-20250514 to claude-sonnet-4-6 claude-sonnet-4-20250514 is the dated alias for Claude Sonnet 4 released May 2025. The current generation is claude-sonnet-4-6, which offers improved reasoning and instruction following. Updating the DEFAULT_MODEL constant ensures AppFactory uses the latest Sonnet by default without requiring users to set ANTHROPIC_MODEL manually. --- CLI/src/core/anthropic.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CLI/src/core/anthropic.ts b/CLI/src/core/anthropic.ts index 63f9967d..07ae8db3 100644 --- a/CLI/src/core/anthropic.ts +++ b/CLI/src/core/anthropic.ts @@ -16,7 +16,7 @@ export interface AnthropicConfig { } // Default configuration values -const DEFAULT_MODEL = 'claude-sonnet-4-20250514'; +const DEFAULT_MODEL = 'claude-sonnet-4-6'; const DEFAULT_MAX_TOKENS = 16000; const DEFAULT_TEMPERATURE = 0.3; const MAX_RETRIES = 3;