task.go 419 B

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