Leon4gr45 commited on
Commit
802854b
·
verified ·
1 Parent(s): 250873e

Update src/agents/meta_review_agent.py

Browse files
Files changed (1) hide show
  1. src/agents/meta_review_agent.py +3 -1
src/agents/meta_review_agent.py CHANGED
@@ -259,4 +259,6 @@ class MetaReviewAgent(BaseAgent):
259
  # Truncate to max_hypotheses if needed
260
  if max_hypotheses is not None and len(final_hypotheses) > max_hypotheses:
261
  final_hypotheses = final_hypotheses[:max_hypotheses]
262
- return self.process(final_hypotheses, research_goal, **kwargs)
 
 
 
259
  # Truncate to max_hypotheses if needed
260
  if max_hypotheses is not None and len(final_hypotheses) > max_hypotheses:
261
  final_hypotheses = final_hypotheses[:max_hypotheses]
262
+ report = self.process(final_hypotheses, research_goal, **kwargs)
263
+ self.logger.info(f"Generated research report with {report.get('hypothesis_count', 'unknown')} hypotheses")
264
+ return report