Current agent status.
| 213 | |
| 214 | |
| 215 | class 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 | |
| 227 | class AgentActionResponse(BaseModel): |