상태 코드
// Luma 작업 상태 상수
const (
LumaTaskStateQueued = "queued" // 대기열
LumaTaskStatePending = "pending" // 대기 중
LumaTaskStateProcessing = "processing" // 처리 중
LumaTaskStateCompleted = "completed" // 완료
LumaTaskStateFailed = "failed" // 실패
LumaTaskStateError = "error" // 오류(오류 응답용)
)