| 2 | |
| 3 | |
| 4 | class SampleStatus(str, Enum): |
| 5 | RUNNING = "running" |
| 6 | COMPLETED = "completed" |
| 7 | AGENT_CONTEXT_LIMIT = "agent context limit" |
| 8 | AGENT_VALIDATION_FAILED = "agent validation failed" |
| 9 | AGENT_INVALID_ACTION = "agent invalid action" |
| 10 | TASK_LIMIT_REACHED = "task limit reached" |
| 11 | UNKNOWN = "unknown" |
| 12 | TASK_ERROR = "task error" |
| 13 | |
| 14 | |
| 15 | class WorkerStatus(IntEnum): |
no outgoing calls
no test coverage detected