Current lifecycle status of the task
| 8325 | |
| 8326 | # Experimental: this type is part of an experimental API and may change or be removed. |
| 8327 | class TaskStatus(Enum): |
| 8328 | """Current lifecycle status of the task""" |
| 8329 | |
| 8330 | CANCELLED = "cancelled" |
| 8331 | COMPLETED = "completed" |
| 8332 | FAILED = "failed" |
| 8333 | IDLE = "idle" |
| 8334 | RUNNING = "running" |
| 8335 | |
| 8336 | class TaskAgentInfoType(Enum): |
| 8337 | AGENT = "agent" |