File size: 239 Bytes
c660b8d
 
 
 
bfaf549
c660b8d
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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()