Spaces:
Running
Running
from pydantic_settings import BaseSettings | |
class Settings(BaseSettings): | |
HUGGINGFACE_TOKEN: str | |
MODEL_NAME: str = "deepseek-ai/DeepSeek-R1-Distill-Qwen-1.5B" | |
class Config: | |
env_file = ".env" | |
settings = Settings() |