chore: Change inner thoughts + enable reasoner logs to debug (#1773)

This commit is contained in:
Matthew Zhou
2025-04-17 17:29:06 -07:00
committed by GitHub
parent ce8752d2f5
commit b8cd56471e

View File

@@ -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")