From 95f825f4bc0771ded004c546afdb9c8a4e2808da Mon Sep 17 00:00:00 2001 From: you-n-g Date: Mon, 15 Jul 2024 11:58:41 +0800 Subject: [PATCH] Update rdagent/core/proposal.py --- rdagent/core/proposal.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rdagent/core/proposal.py b/rdagent/core/proposal.py index cf7e7cbf..58192be9 100644 --- a/rdagent/core/proposal.py +++ b/rdagent/core/proposal.py @@ -56,6 +56,7 @@ class Trace(Generic[ASpecificScen]): def get_last_experiment_info(self) -> Tuple[Hypothesis, ASpecificTask, Any]: """Access the last experiment result, sub-task, and the corresponding hypothesis.""" + # TODO: The return value does not align with the signature. if not self.hist: return None last_hypothesis, last_experiment, _ = self.hist[-1]