feat: add naive experiment generator and update proposal configurations (#759)

* feat: Add naive experiment generator and update proposal configurations

* lint

* lint
This commit is contained in:
you-n-g
2025-04-07 13:01:29 +08:00
committed by GitHub
parent ebff475f14
commit 6be6b8408f
11 changed files with 133 additions and 26 deletions
@@ -3,4 +3,5 @@ from rdagent.components.coder.CoSTEER.task import CoSTEERTask
# Because we use isinstance to distinguish between different types of tasks, we need to use sub classes to represent different types of tasks
class PipelineTask(CoSTEERTask):
pass
def __init__(self, name: str = "Pipeline", *args, **kwargs) -> None:
super().__init__(name=name, *args, **kwargs)
@@ -10,4 +10,5 @@ from rdagent.core.utils import cache_with_pickle
# Because we use isinstance to distinguish between different types of tasks, we need to use sub classes to represent different types of tasks
class WorkflowTask(CoSTEERTask):
pass
def __init__(self, name: str = "Workflow", *args, **kwargs) -> None:
super().__init__(name=name, *args, **kwargs)