fix: set default value for reasoner to true (#3930)

This commit is contained in:
cthomas
2025-08-14 14:22:24 -07:00
committed by GitHub
parent dfca7ab442
commit 62ecb15bc8

View File

@@ -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,