Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 452 Bytes

File metadata and controls

24 lines (17 loc) · 452 Bytes

WorkflowExecutionStatus

Example Usage

from mistralai.client.models import WorkflowExecutionStatus

# Open enum: unrecognized values are captured as UnrecognizedStr
value: WorkflowExecutionStatus = "RUNNING"

Values

This is an open enum. Unrecognized values will not fail type checks.

  • "RUNNING"
  • "COMPLETED"
  • "FAILED"
  • "CANCELED"
  • "TERMINATED"
  • "CONTINUED_AS_NEW"
  • "TIMED_OUT"
  • "RETRYING_AFTER_ERROR"