feat: 审查流程优化+采集定时调度+全链路LLM提示词升级
- 审查:移除 manual_review,改为迭代LLM修复(最多3次),合规分回写Topic - 调度:scheduler 新增话题采集定时任务 scheduled_collect (01:30) - 提示词:全链路8文件≈24个提示词升级,增强SEO/平台推荐/真人感
This commit is contained in:
@@ -56,7 +56,7 @@ def main(target_date: str = None):
|
||||
|
||||
passed = sum(1 for r in results if r['passed'])
|
||||
failed = len(results) - passed
|
||||
print(f"\n✅ 通过: {passed}, ⚠️ 需人工: {failed}")
|
||||
print(f"\n✅ 通过: {passed}, ⚠️ 未通过: {failed}")
|
||||
for r in results:
|
||||
status = "✅" if r['passed'] else "⚠️"
|
||||
print(f" {status} {r['topic_id']} {r['topic_title'][:40]}...")
|
||||
|
||||
Reference in New Issue
Block a user