Update src/agents/meta_review_agent.py
Browse files
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 |
-
|
|
|
|
|
|
|
|
|
| 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
|