Spaces:
Sleeping
Sleeping
from pydantic_settings import BaseSettings | |
class Settings(BaseSettings): | |
API_TITLE: str = "Makhfi Chatbot API" | |
API_VERSION: str = "1.0.0" | |
API_DESCRIPTION: str = "API for interacting with the Makhfi chatbot" | |
ALLOWED_ORIGINS: list = [ | |
"http://localhost:3000", | |
"https://furqan-qureshi-blogs.vercel.app/" | |
] | |
settings = Settings() | |