Añadido imagenes en records nuevos
This commit is contained in:
@@ -65,7 +65,7 @@ class Settings(BaseSettings):
|
||||
|
||||
# --- Orchestrator ---
|
||||
max_execution_steps: int = 25
|
||||
subagent_max_steps: int = 10
|
||||
subagent_max_steps: int = 30
|
||||
max_execution_timeout_seconds: float = 300.0 # 5 min global timeout
|
||||
|
||||
# --- SSE ---
|
||||
|
||||
@@ -39,6 +39,6 @@ class SubAgentDefinition(BaseModel):
|
||||
profile: AgentProfile
|
||||
input_schema: dict[str, Any] = Field(default_factory=dict)
|
||||
output_schema: dict[str, Any] = Field(default_factory=dict)
|
||||
max_steps: int = 10
|
||||
max_steps: int = 30
|
||||
requires_approval: bool = False
|
||||
description: str = ""
|
||||
|
||||
@@ -45,7 +45,7 @@ class BaseAgent:
|
||||
async def execute(
|
||||
self,
|
||||
session: SessionState,
|
||||
max_steps: int = 10,
|
||||
max_steps: int = 30,
|
||||
) -> dict[str, Any]:
|
||||
"""Run the agent's execution loop.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user