from pydantic_settings import BaseSettings from functools import lru_cache class Settings(BaseSettings): FIRESTORE_COLLECTION: str = "benchmarks" class Config: case_sensitive = True env_file = ".env" @lru_cache() def get_settings(): return Settings() settings = get_settings()