Skip to content

상태 코드

// Veo 작업 상태 상수
const (
	VeoStatusPending                  = "pending"
	VeoStatusImageDownloading         = "image_downloading"
	VeoStatusVideoGenerating          = "video_generating"
	VeoStatusVideoGenerationCompleted = "video_generation_completed"
	VeoStatusVideoGenerationFailed    = "video_generation_failed"
	VeoStatusVideoUpsampling          = "video_upsampling"
	VeoStatusVideoUpsamplingCompleted = "video_upsampling_completed"
	VeoStatusVideoUpsamplingFailed    = "video_upsampling_failed"
	VeoStatusCompleted                = "completed"
	VeoStatusFailed                   = "failed"
	VeoStatusError                    = "error" // 오류(오류 응답용)
)