Spaces:
Runtime error
Runtime error
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() | |