From b8cd56471e776687997be1ef70feab4fb3a37ece Mon Sep 17 00:00:00 2001 From: Matthew Zhou Date: Thu, 17 Apr 2025 17:29:06 -0700 Subject: [PATCH] chore: Change inner thoughts + enable reasoner logs to debug (#1773) --- 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 4c17ab66..77114ea3 100644 --- a/letta/schemas/llm_config.py +++ b/letta/schemas/llm_config.py @@ -110,7 +110,7 @@ class LLMConfig(BaseModel): if self.max_tokens is not None and self.max_reasoning_tokens >= self.max_tokens: logger.warning("max_tokens must be greater than max_reasoning_tokens (thinking budget)") if self.put_inner_thoughts_in_kwargs: - logger.warning("Extended thinking is not compatible with put_inner_thoughts_in_kwargs") + logger.debug("Extended thinking is not compatible with put_inner_thoughts_in_kwargs") elif self.max_reasoning_tokens and not self.enable_reasoner: logger.warning("model will not use reasoning unless enable_reasoner is set to True")