From 86628de88ec1127db2a9b9e39c6516d7c1934fdf Mon Sep 17 00:00:00 2001 From: Vadym Samoilenko Date: Sun, 8 Mar 2026 17:31:59 +0000 Subject: [PATCH] Fix Claude model name to claude-sonnet-4-6 Co-Authored-By: Claude Opus 4.6 --- chatbot-api/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chatbot-api/config.py b/chatbot-api/config.py index 485ce59..516c31e 100644 --- a/chatbot-api/config.py +++ b/chatbot-api/config.py @@ -13,7 +13,7 @@ class Settings(BaseSettings): conversation_window: int = 15 max_response_tokens: int = 300 conversation_ttl: int = 86400 # 24 hours - model: str = "claude-sonnet-4-6-20250514" + model: str = "claude-sonnet-4-6" model_config = {"env_file": ".env"}