2024-11-25 16:27:34 +08:00
|
|
|
from rdagent.core.conf import ExtendedBaseSettings
|
2024-07-24 16:56:27 +08:00
|
|
|
|
2024-07-26 12:12:16 +08:00
|
|
|
|
2024-11-25 16:27:34 +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-26 12:12:16 +08:00
|
|
|
|
2024-07-24 16:56:27 +08:00
|
|
|
scen: str = ""
|
2024-09-23 19:32:01 +08:00
|
|
|
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
|