Supported Image Models for generation.
| 12 | |
| 13 | |
| 14 | class ModelName(str, Enum): |
| 15 | """Supported Image Models for generation.""" |
| 16 | |
| 17 | DALL_E = "dall-e" |
| 18 | STABLE_DIFFUSION = "stable-diffusion" |
| 19 | |
| 20 | |
| 21 | SUPPORTED_IMAGE_SIZES = { |
nothing calls this directly
no outgoing calls
no test coverage detected