Files
NexQuant/rdagent/components/workflow/conf.py
T

20 lines
518 B
Python
Raw Normal View History

from rdagent.core.conf import ExtendedBaseSettings
2024-07-24 16:56:27 +08:00
class BasePropSetting(ExtendedBaseSettings):
2024-07-24 16:56:27 +08:00
"""
2024-08-05 18:11:23 +08:00
The common part of the config for RD Loop to propose and development
2024-07-24 16:56:27 +08:00
You can add following config in the subclass to distinguish the environment variables.
"""
2024-07-24 16:56:27 +08:00
scen: str = ""
knowledge_base: str = ""
knowledge_base_path: str = ""
2024-07-24 16:56:27 +08:00
hypothesis_gen: str = ""
hypothesis2experiment: str = ""
coder: str = ""
runner: str = ""
summarizer: str = ""
evolving_n: int = 10