task.go 371 B

12345678910111213141516171819
  1. package constant
  2. type TaskPlatform string
  3. const (
  4. TaskPlatformSuno TaskPlatform = "suno"
  5. TaskPlatformMidjourney = "mj"
  6. TaskPlatformKling TaskPlatform = "kling"
  7. )
  8. const (
  9. SunoActionMusic = "MUSIC"
  10. SunoActionLyrics = "LYRICS"
  11. )
  12. var SunoModel2Action = map[string]string{
  13. "suno_music": SunoActionMusic,
  14. "suno_lyrics": SunoActionLyrics,
  15. }