Files
ailine/backend/app/templates/knowledge_summary.md

49 lines
580 B
Markdown
Raw Permalink Normal View History

2026-05-09 01:51:18 +08:00
# 📚 知识总结
**主题**: {{ 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 %}