from pydantic_settings import BaseSettings class Settings(BaseSettings): PROJECT_NAME: str = "ai-service" STORAGE_SERVICE_URL: str = "http://storage-service:8020" model_config = {"env_file": ".env", "extra": "ignore"} settings = Settings()