File size: 340 Bytes
ae6d1e2
 
 
 
 
 
 
 
876369b
ae6d1e2
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from pydantic_settings import BaseSettings


class Settings(BaseSettings):
    """Application settings loaded from .env file."""

    GEMINI_API_KEY: str = ""
    SPEECHMATICS_API_KEY: str = ""
    VOICE_API_URL: str = ""

    model_config = {
        "env_file": ".env",
        "env_file_encoding": "utf-8",
    }


settings = Settings()