constants.go 287 B

123456789101112
  1. package replicate
  2. const (
  3. // ChannelName identifies the replicate channel.
  4. ChannelName = "replicate"
  5. // ModelFlux11Pro is the default image generation model supported by this channel.
  6. ModelFlux11Pro = "black-forest-labs/flux-1.1-pro"
  7. )
  8. var ModelList = []string{
  9. ModelFlux11Pro,
  10. }