7 lines
154 B
Python
7 lines
154 B
Python
from enum import Enum
|
|
|
|
class ImageProvider(Enum):
|
|
PEXELS = "pexels"
|
|
PIXABAY = "pixabay"
|
|
GEMINI_FLASH = "gemini_flash"
|
|
DALLE3 = "dall-e-3"
|