task.go 498 B

1234567891011121314151617181920212223
  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. TaskActionGenerate = "generate"
  13. TaskActionTextGenerate = "textGenerate"
  14. )
  15. var SunoModel2Action = map[string]string{
  16. "suno_music": SunoActionMusic,
  17. "suno_lyrics": SunoActionLyrics,
  18. }