You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rdagent/scenarios/data_science/proposal/exp_gen/proposal.py
+8-1Lines changed: 8 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -247,6 +247,13 @@ class HypothesisDetail(BaseModel):
247
247
evaluation: HypothesisEvaluation=Field(description="Evaluate the quality of the hypothesis.")
248
248
249
249
250
+
classHypothesisSimple(BaseModel):
251
+
hypothesis: str=Field(
252
+
description="The statement of the hypothesis. It could be a design of a new component, or a concise, testable statement derived from previous experimental outcomes."
253
+
)
254
+
component: HypothesisComponent=Field(description="The component tag of the hypothesis.")
255
+
256
+
250
257
classHypothesisList(BaseModel):
251
258
deduplicated_challenges: List[str] =Field(
252
259
description="A list of deduplicated challenge captions. Each must retain its original wording. If multiple captions are semantically identical, keep the first one."
0 commit comments