add: router agent env

This commit is contained in:
GabinFay 2025-05-18 18:53:53 -07:00
parent c7a7db309c
commit cbb1607f12
48 changed files with 6764 additions and 0 deletions

View file

@ -0,0 +1,13 @@
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
# Add any specific settings required by the application here
# For example:
# spotify_client_id: str | None = None
# spotify_client_secret: str | None = None
class Config:
env_file = ".env"
env_file_encoding = "utf-8"
settings = Settings()