// 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)
)
Modified at 2026-03-21 09:13:17