Spaces:
Sleeping
Sleeping
from pydantic_settings import BaseSettings | |
class Settings(BaseSettings): | |
HUGGINGFACE_TOKEN: str | |
MODEL_NAME: str = "deepseek-ai/deepseek-coder-33b-instruct" | |
class Config: | |
env_file = ".env" | |
settings = Settings() |