Files
wehub-resource-sync e64161ec32
CI / ci (3.11) (push) Has been cancelled
CI / ci (3.10) (push) Has been cancelled
CI / dependabot (push) Has been cancelled
Release / release_and_publish (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:36:15 +08:00

25 lines
587 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"
amlt_path: str = "/data/share_folder_local/amlt"
static_path: str = "./git_ignore_folder/static"
trace_folder: str = "./git_ignore_folder/traces"
enable_cache: bool = True
UI_SETTING = UIBasePropSetting()