from pydantic_settings import BaseSettings class Settings(BaseSettings): google_project_id: str google_location: str = "us-central1" class Config: env_file = ".env" settings = Settings()