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

29 lines
449 B
Markdown
Raw Permalink Normal View History

2026-05-09 01:51:18 +08:00
## 🔍 搜索结果
{% if query %}
**查询**: {{ query }}
{% endif %}
{% if result_count %}
找到 {{ result_count }} 条相关结果
{% endif %}
---
{% for item in results %}
### [{{ loop.index }}] {{ item.title }}
- **来源**: [{{ item.url }}]({{ item.url }})
- **摘要**: {{ item.snippet }}
{% if item.source %}
- **来源网站**: {{ item.source }}
{% endif %}
{% endfor %}
---
{% if citation_note %}
{{ citation_note }}
{% endif %}