We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95eb94c commit 66a3924Copy full SHA for 66a3924
backend/report_type/detailed_report/detailed_report.py
@@ -59,7 +59,7 @@ async def _initial_research(self):
59
60
async def _get_all_subtopics(self) -> list:
61
subtopics = await self.main_task_assistant.get_subtopics()
62
- return subtopics.dict()["subtopics"]
+ return subtopics.dict().get("subtopics", [])
63
64
async def _generate_subtopic_reports(self, subtopics: list) -> tuple:
65
subtopic_reports = []
0 commit comments