2024-06-12 20:37:42 +08:00
|
|
|
package constant
|
|
|
|
|
|
|
|
|
|
type TaskPlatform string
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
TaskPlatformSuno TaskPlatform = "suno"
|
|
|
|
|
TaskPlatformMidjourney = "mj"
|
2025-06-08 21:40:57 +08:00
|
|
|
TaskPlatformKling TaskPlatform = "kling"
|
2024-06-12 20:37:42 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
SunoActionMusic = "MUSIC"
|
|
|
|
|
SunoActionLyrics = "LYRICS"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
var SunoModel2Action = map[string]string{
|
|
|
|
|
"suno_music": SunoActionMusic,
|
|
|
|
|
"suno_lyrics": SunoActionLyrics,
|
|
|
|
|
}
|