Tiny-Debate-Club / config.py
AdityaManojShinde's picture
changed requirements
6d0baf7
Raw
History Blame Contribute Delete
293 Bytes
# config.py
from pydantic_settings import BaseSettings
class Settings(BaseSettings):
hf_token: str
model: str = "google/gemma-4-E4B-it"
debate_rounds: int = 2
class Config:
env_file = ".env"
env_file_encoding = "utf-8"
settings = Settings()