feat(main): 移除知识库初始化,简化主系统启动流程

This commit is contained in:
Windpicker-owo
2025-11-10 21:57:35 +08:00
parent 1b93cc3d63
commit 6203fca5f2
2 changed files with 1 additions and 6 deletions

View File

@@ -213,7 +213,7 @@ class StatisticOutputTask(AsyncTask):
logger.info("正在收集统计数据(异步)...")
stats = await asyncio.create_task(self._collect_all_statistics(now))
logger.info("统计数据收集完成")
self._statistic_console_output(stats, n ow)
self._statistic_console_output(stats, now)
await asyncio.create_task(self._generate_html_report(stats, now))
logger.info("统计数据输出完成")
except Exception as e: