Files
NexQuant/rdagent/log/ui/conf.py
T

19 lines
449 B
Python
Raw Normal View History

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"
2025-05-07 19:59:40 +08:00
aide_path: str = "./aide"
amlt_path: str = "/data/share_folder_local/amlt"
UI_SETTING = UIBasePropSetting()