// 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-02-10 16:10:32