| # 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() | |
| # 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() | |