chore: remove agent turn limits (#19930)

This commit is contained in:
Novice
2025-05-29 09:51:56 +08:00
committed by GitHub
parent 9bbd646f40
commit b2ab401279
9 changed files with 11 additions and 11 deletions

View File

@@ -82,7 +82,7 @@ class AgentEntity(BaseModel):
strategy: Strategy
prompt: Optional[AgentPromptEntity] = None
tools: Optional[list[AgentToolEntity]] = None
max_iteration: int = 5
max_iteration: int = 10
class AgentInvokeMessage(ToolInvokeMessage):