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 | |
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 | |