This commit is contained in:
48
backend/app/templates/knowledge_summary.md
Normal file
48
backend/app/templates/knowledge_summary.md
Normal file
@@ -0,0 +1,48 @@
|
||||
# 📚 知识总结
|
||||
|
||||
**主题**: {{ 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 %}
|
||||
Reference in New Issue
Block a user