mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-08-01 17:37:43 +00:00
c335ebc25c
* ui server update * update * fix bugs * updates * use randomname * fix * fix bugs * change time interval in debug server * some change * fix CI * time interval change * updates * some changes * fix * fix curves * one IP, one pointers to show msgs return progress * enable /control * fix bugs * fix CI * fix isort
23 lines
538 B
Python
23 lines
538 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 = "./traces"
|
|
|
|
|
|
UI_SETTING = UIBasePropSetting()
|