from pydantic_settings import BaseSettings class Settings(BaseSettings): # Gemini Live API gemini_api_key: str = "" # Honcho (memory) honcho_api_key: str = "" honcho_base_url: str = "" # Server host: str = "0.0.0.0" port: int = 8000 model_config = { "env_file": ".env", "env_file_encoding": "utf-8", "extra": "ignore", } settings = Settings()