// 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 2025-12-02 13:49:34