优化输出
All checks were successful
构建并部署 AI Agent 服务 / deploy (push) Successful in 6m6s

This commit is contained in:
2026-05-09 01:51:18 +08:00
parent b30f7b00a7
commit 4c119073bc
18 changed files with 973 additions and 2941 deletions

View 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 %}