mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-29 08:27:43 +00:00
17 lines
395 B
Python
17 lines
395 B
Python
from pydantic_settings import SettingsConfigDict
|
|
|
|
from rdagent.core.conf import ExtendedBaseSettings
|
|
|
|
|
|
class UIBasePropSetting(ExtendedBaseSettings):
|
|
model_config = SettingsConfigDict(env_prefix="UI_", protected_namespaces=())
|
|
|
|
default_log_folders: list[str] = ["./log"]
|
|
|
|
baseline_result_path: str = "./baseline.csv"
|
|
|
|
aide_path: str = "./aide"
|
|
|
|
|
|
UI_SETTING = UIBasePropSetting()
|