Spaces:
Runtime error
Runtime error
File size: 243 Bytes
8faf3a4 |
1 2 3 4 5 6 7 8 |
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 |