| 1234567891011121314151617181920212223 |
- 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,
- }
|