File size: 363 Bytes
4210f9f
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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()