feat: 审查流程优化+采集定时调度+全链路LLM提示词升级

- 审查:移除 manual_review,改为迭代LLM修复(最多3次),合规分回写Topic
- 调度:scheduler 新增话题采集定时任务 scheduled_collect (01:30)
- 提示词:全链路8文件≈24个提示词升级,增强SEO/平台推荐/真人感
This commit is contained in:
Yuzhiran Dev
2026-05-14 21:52:02 +08:00
parent 1115223066
commit fef435cc78
15 changed files with 288 additions and 160 deletions
+2 -3
View File
@@ -48,10 +48,9 @@ if report_file.exists():
print(f"\n=== 3. 合规优化结果 ===")
sm = report['summary']
print(f" 总文章数: {sm['total_articles']}")
print(f" 自动通过: {sm['passed_auto']}")
print(f" 需人工审核: {sm['need_manual']}")
print(f" 通过文章: {sm['passed_auto']}")
print(f" 平均合规分: {sm['average_score']:.1f}")
if sm['need_manual'] == 0:
if sm['passed_auto'] > 0:
print(" ✅ 所有文章均已自动合规")
else:
print(f"\n=== 3. 合规优化结果 ===")