Vizz17/context-aware-rag
0
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 