Spaces:
Running
Running
File size: 288 Bytes
9f54862 | 1 2 3 4 5 6 7 8 9 10 | from enum import StrEnum
# Free models from OpenRouter
# Paid models from OpenRouter to be added to the .env file
class ModelId(StrEnum):
NVIDIA_NEMOTRON_3_ULTRA_FREE = "nvidia/nemotron-3-ultra-550b-a55b:free"
INCLUSION_AI_LING_3_FLASH_FREE = "inclusionai/ling-3.0-flash:free"
|