Spaces:
Running
Running
File size: 243 Bytes
2542be6 |
1 2 3 4 5 6 7 8 |
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
APP_NAME: str = "Location Analytics API"
DEBUG_MODE: bool = False
SPACY_MODEL: str = "en_core_web_sm" # or any other model you prefer
settings = Settings() |