1from typing import Optional 2 3from pydantic import BaseSettings 4 5 6class Settings(BaseSettings): 7 token: str 8 account_id: Optional[str] = None 9 sandbox: bool = True 10 11 class Config: 12 env_file = ".env" 13 14 15settings = Settings() 16 17