From 02bee7ecdf9ad5fdf3bda156d37ba6de22fec0db Mon Sep 17 00:00:00 2001 From: SH-Src Date: Mon, 29 Jul 2024 09:35:56 +0000 Subject: [PATCH] update --- rdagent/scenarios/data_mining/proposal/model_proposal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdagent/scenarios/data_mining/proposal/model_proposal.py b/rdagent/scenarios/data_mining/proposal/model_proposal.py index 064a1a9d..8594255b 100644 --- a/rdagent/scenarios/data_mining/proposal/model_proposal.py +++ b/rdagent/scenarios/data_mining/proposal/model_proposal.py @@ -50,7 +50,7 @@ class DMModelHypothesisGen(ModelHypothesisGen): def convert_response(self, response: str) -> ModelHypothesis: response_dict = json.loads(response) - hypothesis = DMModelHypothesis(hypothesis=response_dict["hypothesis"], reason=response_dict["reason"]) + hypothesis = DMModelHypothesis(hypothesis=response_dict["hypothesis"], reason=response_dict["reason"], concise_reason=response_dict["concise_reason"]) return hypothesis