mirror of
https://github.com/QuantumNous/new-api.git
synced 2026-03-30 10:34:20 +00:00
24 lines
498 B
Go
24 lines
498 B
Go
package constant
|
|
|
|
type TaskPlatform string
|
|
|
|
const (
|
|
TaskPlatformSuno TaskPlatform = "suno"
|
|
TaskPlatformMidjourney = "mj"
|
|
TaskPlatformKling TaskPlatform = "kling"
|
|
TaskPlatformJimeng TaskPlatform = "jimeng"
|
|
)
|
|
|
|
const (
|
|
SunoActionMusic = "MUSIC"
|
|
SunoActionLyrics = "LYRICS"
|
|
|
|
TaskActionGenerate = "generate"
|
|
TaskActionTextGenerate = "textGenerate"
|
|
)
|
|
|
|
var SunoModel2Action = map[string]string{
|
|
"suno_music": SunoActionMusic,
|
|
"suno_lyrics": SunoActionLyrics,
|
|
}
|