File size: 425 Bytes
1ebbb74
 
 
 
 
 
d130bf4
1ebbb74
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from pydantic_settings import BaseSettings


class Settings(BaseSettings):
    api_password: str  # The password for accessing the API endpoints.
    proxy_url: str | None = None  # The URL of the proxy server to route requests through.
    enable_streaming_progress: bool = False  # Whether to enable streaming progress tracking.

    class Config:
        env_file = ".env"
        extra = "ignore"


settings = Settings()