fix: update model IDs for Sonnet and Haiku

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)
This commit is contained in:
AndyMik90
2025-12-19 00:43:29 +01:00
parent 99cf21e61b
commit 059315d6ab
@@ -18,8 +18,8 @@ export const AVAILABLE_MODELS = [
// Maps model shorthand to actual Claude model IDs
export const MODEL_ID_MAP: Record<string, string> = {
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)