This commit is contained in:
28
backend/app/templates/web_search_result.md
Normal file
28
backend/app/templates/web_search_result.md
Normal file
@@ -0,0 +1,28 @@
|
||||
## 🔍 搜索结果
|
||||
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user