// Luma task status constants
const (
LumaTaskStateQueued = "queued" // Queued
LumaTaskStatePending = "pending" // Pending
LumaTaskStateProcessing = "processing" // Processing
LumaTaskStateCompleted = "completed" // Completed
LumaTaskStateFailed = "failed" // Failed
LumaTaskStateError = "error" // Error (used for error responses)
)
Modified at 2026-01-13 07:26:42