// Luma task status constants
const (
LumaTaskStateQueued = "queued" // Queued
LumaTaskStatePending = "pending" // Waiting
LumaTaskStateProcessing = "processing" // Processing
LumaTaskStateCompleted = "completed" // Completed
LumaTaskStateFailed = "failed" // failed
LumaTaskStateError = "error" // Error (for error response)
)