From 4a753c1955e87bd2d96e2b867de806b0991bac26 Mon Sep 17 00:00:00 2001 From: Ari Webb Date: Wed, 15 Oct 2025 14:49:21 -0700 Subject: [PATCH] feat: add haiku 4.5 as reasoning model (#3038) Co-authored-by: Ari Webb --- letta/schemas/llm_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/letta/schemas/llm_config.py b/letta/schemas/llm_config.py index 1c6b6a64..f3b94687 100644 --- a/letta/schemas/llm_config.py +++ b/letta/schemas/llm_config.py @@ -239,6 +239,7 @@ class LLMConfig(BaseModel): config.model.startswith("claude-opus-4") or config.model.startswith("claude-sonnet-4") or config.model.startswith("claude-3-7-sonnet") + or config.model.startswith("claude-4-5-haiku") ) @classmethod