Files
ailine/backend/app/templates/knowledge_summary.md
root 4c119073bc
All checks were successful
构建并部署 AI Agent 服务 / deploy (push) Successful in 6m6s
优化输出
2026-05-09 01:51:18 +08:00

580 B

📚 知识总结

主题: {{ topic }} 生成时间: {{ timestamp }}


📋 内容概览

{{ summary }}


{% if key_points %}

🔑 关键要点

{% for point in key_points %}

{{ loop.index }}. {{ point.title }}

{{ point.description }} {% endfor %} {% endif %}


{% if table_data %}

📊 数据表格

{{ table }} {% endif %}


{% if sources %}

📖 参考来源

{% for source in sources %}

  • [{{ source.title }}]({{ source.url }}) {% endfor %} {% endif %}

{% if next_steps %}

➡️ 后续建议

{{ suggestions }} {% endif %}