From dfd7fc1f10fb3dae78356bae5978f99a97f0c63c Mon Sep 17 00:00:00 2001 From: chihlasm Date: Sat, 7 Mar 2026 00:58:32 -0500 Subject: [PATCH] fix: use correct model alias in AI_MODEL_TIERS standard tier The dated model ID `claude-sonnet-4-6-20250514` was causing 502 errors. Use the alias `claude-sonnet-4-6` which matches AI_MODEL_ANTHROPIC. Co-Authored-By: Claude Opus 4.6 --- backend/app/core/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/app/core/config.py b/backend/app/core/config.py index 79afe728..972211d9 100644 --- a/backend/app/core/config.py +++ b/backend/app/core/config.py @@ -87,7 +87,7 @@ class Settings(BaseSettings): # Model tier routing — maps action types to model tiers AI_MODEL_TIERS: dict[str, str] = { "fast": "claude-haiku-4-5-20251001", - "standard": "claude-sonnet-4-6-20250514", + "standard": "claude-sonnet-4-6", } ACTION_MODEL_MAP: dict[str, str] = {