from pydantic_settings import BaseSettings class Settings(BaseSettings): database_url: str = "postgresql://postgres:postgres@db:5432/food_prices" ah_client_id: str = "appie" model_config = {"env_file": ".env"} settings = Settings()