mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-03 01:48:05 +00:00
update job status
This commit is contained in:
parent
c26510ea9a
commit
773b2c1c29
1 changed files with 6 additions and 3 deletions
|
|
@ -10,10 +10,13 @@ from typing import Protocol
|
|||
|
||||
|
||||
class JobStatus(StrEnum):
|
||||
PENDING = "pending"
|
||||
RUNNING = "running"
|
||||
COMPLETED = "completed"
|
||||
VALIDATING = "validating"
|
||||
FAILED = "failed"
|
||||
IN_PROGRESS = "in_progress"
|
||||
FINALIZING = "finalizing"
|
||||
COMPLETED = "completed"
|
||||
EXPIRED = "expired"
|
||||
CANCELLING = "cancelling"
|
||||
CANCELLED = "cancelled"
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue