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

21 lines
624 B
Python

from rdagent.core.conf import ExtendedBaseSettings
class BasePropSetting(ExtendedBaseSettings):
"""
The common part of the config for RD Loop to propose and development
You can add following config in the subclass to distinguish the environment variables.
"""
scen: str | None = None
knowledge_base: str | None = None
knowledge_base_path: str | None = None
hypothesis_gen: str | None = None
interactor: str | None = None
hypothesis2experiment: str | None = None
coder: str | None = None
runner: str | None = None
summarizer: str | None = None
evolving_n: int = 10