File size: 244 Bytes
8fe5582 |
1 2 3 4 5 6 7 8 9 |
from pydantic_settings import BaseSettings, SettingsConfigDict
class Config(BaseSettings):
model_config = SettingsConfigDict(env_prefix="lt_")
negative_threshold: float = -0.65
positive_threshold: float = 0.37
zero: float = 0
|