helperAi / app /config.py
sanmmarr29's picture
Update app/config.py
bfaf549 verified
raw
history blame contribute delete
239 Bytes
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()