From 059315d6abd28bb7daa5e59be1b912a33f2ccff4 Mon Sep 17 00:00:00 2001 From: AndyMik90 Date: Fri, 19 Dec 2025 00:43:29 +0100 Subject: [PATCH] fix: update model IDs for Sonnet and Haiku MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated the model IDs in the MODEL_ID_MAP to reflect the latest versions for Sonnet and Haiku. This change ensures that the application uses the correct identifiers for these models moving forward. 🤖 Generated with [Claude Code](https://claude.com/claude-code) --- auto-claude-ui/src/shared/constants/models.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auto-claude-ui/src/shared/constants/models.ts b/auto-claude-ui/src/shared/constants/models.ts index 42b61974..b853a3dc 100644 --- a/auto-claude-ui/src/shared/constants/models.ts +++ b/auto-claude-ui/src/shared/constants/models.ts @@ -18,8 +18,8 @@ export const AVAILABLE_MODELS = [ // Maps model shorthand to actual Claude model IDs export const MODEL_ID_MAP: Record = { opus: 'claude-opus-4-5-20251101', - sonnet: 'claude-sonnet-4-5-20241022', - haiku: 'claude-haiku-4-5-20241022' + sonnet: 'claude-sonnet-4-5-20250929', + haiku: 'claude-haiku-4-5-20251001' } as const; // Maps thinking levels to budget tokens (null = no extended thinking)