helperAi / app /config.py
sanmmarr29's picture
Upload 6 files
732e177 verified
raw
history blame
237 Bytes
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()