CoolFace
Apppublic

Vizz17/context-aware-rag

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
dependencies.py14 linesDownload Raw Back to core
1"""FastAPI dependency injection — shared service instances."""2 3from __future__ import annotations4 5from functools import lru_cache6 7from app.core.config import Settings8 9 10@lru_cache11def get_settings() -> Settings:12    """Return the cached application settings."""13    return Settings()14