Spaces:
Running
Running
File size: 319 Bytes
89c8ad5 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
OPENROUTER_API_KEY: str
API_URL: str = "https://openrouter.ai/api/v1/chat/completions"
MODEL: str = "deepseek/deepseek-chat:free"
class Config:
env_file = ".env"
env_file_encoding = "utf-8"
settings = Settings() |