From 62ecb15bc8a0e6335602e87234637d4cec5654ae Mon Sep 17 00:00:00 2001 From: cthomas Date: Thu, 14 Aug 2025 14:22:24 -0700 Subject: [PATCH] fix: set default value for reasoner to true (#3930) --- letta/schemas/llm_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/letta/schemas/llm_config.py b/letta/schemas/llm_config.py index c719db7f..f9ccc358 100644 --- a/letta/schemas/llm_config.py +++ b/letta/schemas/llm_config.py @@ -55,7 +55,7 @@ class LLMConfig(BaseModel): description="The maximum number of tokens to generate. If not set, the model will use its default value.", ) enable_reasoner: bool = Field( - False, description="Whether or not the model should use extended thinking if it is a 'reasoning' style model" + True, description="Whether or not the model should use extended thinking if it is a 'reasoning' style model" ) reasoning_effort: Optional[Literal["minimal", "low", "medium", "high"]] = Field( None,