Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sgr_deep_research/core/tools/final_answer_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class FinalAnswerTool(BaseTool):

reasoning: str = Field(description="Why task is now complete and how answer was verified")
completed_steps: list[str] = Field(
description="Summary of completed steps including verification", min_length=1, max_length=5
description="Summary of completed steps including verification", min_length=1
)
answer: str = Field(description="Comprehensive final answer with EXACT factual details (dates, numbers, names)")
status: Literal[AgentStatesEnum.COMPLETED, AgentStatesEnum.FAILED] = Field(description="Task completion status")
Expand Down