makhfi_ai_service / config.py
Aasher's picture
Refactor main.py: Enhance API configuration and add health check endpoint
4210f9f
raw
history blame contribute delete
363 Bytes
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()