feat: make enable reasoner default true for agent creation (#3996)

This commit is contained in:
cthomas
2025-08-18 17:58:16 -07:00
committed by GitHub
parent d53578f721
commit 6de1024523

View File

@@ -211,7 +211,7 @@ class CreateAgent(BaseModel, validate_assignment=True): #
max_reasoning_tokens: Optional[int] = Field(
None, description="The maximum number of tokens to generate for reasoning step. If not set, the model will use its default value."
)
enable_reasoner: Optional[bool] = Field(False, description="Whether to enable internal extended thinking step for a reasoner model.")
enable_reasoner: Optional[bool] = Field(True, description="Whether to enable internal extended thinking step for a reasoner model.")
reasoning: Optional[bool] = Field(None, description="Whether to enable reasoning for this agent.")
from_template: Optional[str] = Field(None, description="The template id used to configure the agent")
template: bool = Field(False, description="Whether the agent is a template")