MCPcopy Create free account
hub / github.com/AutoForgeAI/autoforge / AgentStatus

Class AgentStatus

server/schemas.py:215–224  ·  view source on GitHub ↗

Current agent status.

Source from the content-addressed store, hash-verified

213
214
215class AgentStatus(BaseModel):
216 """Current agent status."""
217 status: Literal["stopped", "running", "paused", "crashed"]
218 pid: int | None = None
219 started_at: datetime | None = None
220 yolo_mode: bool = False
221 model: str | None = None # Model being used by running agent
222 parallel_mode: bool = False # DEPRECATED: Always True now (unified orchestrator)
223 max_concurrency: int | None = None
224 testing_agent_ratio: int = 1 # Regression testing agents (0-3)
225
226
227class AgentActionResponse(BaseModel):

Callers 1

get_agent_statusFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected