mdadul
update readme
2bbbb9f
raw
history blame contribute delete
274 Bytes
from pydantic import BaseSettings
class Settings(BaseSettings):
PROJECT_NAME: str = "Bangla Spam Detection API"
PROJECT_VERSION: str = "1.0.0"
MODEL_NAME: str = "Bijoy09/bangla_spam_detection"
class Config:
env_file = ".env"
settings = Settings()