Files
new-api/constant/task.go

24 lines
498 B
Go
Raw Normal View History

package constant
type TaskPlatform string
const (
TaskPlatformSuno TaskPlatform = "suno"
TaskPlatformMidjourney = "mj"
2025-06-08 21:40:57 +08:00
TaskPlatformKling TaskPlatform = "kling"
2025-06-20 15:50:00 +08:00
TaskPlatformJimeng TaskPlatform = "jimeng"
)
const (
SunoActionMusic = "MUSIC"
SunoActionLyrics = "LYRICS"
2025-06-27 22:43:01 +08:00
TaskActionGenerate = "generate"
TaskActionTextGenerate = "textGenerate"
)
var SunoModel2Action = map[string]string{
"suno_music": SunoActionMusic,
"suno_lyrics": SunoActionLyrics,
}