{% extends "base.html" %} {% block title %}搜索 · kb-mcp admin{% endblock %} {% block content %}
{% if errors %}
{% for error in errors %}
{{ error }}
{% endfor %}
{% endif %}

搜索结果

{{ hits|length }} 条结果
{% for hit in hits %}
{{ hit.doc.title }} {% set hit_t_info = doc_types_map.get(hit.doc.type) if doc_types_map is defined else none %} {% set hit_t_label = hit_t_info.label if (hit_t_info and hit_t_info.label) else hit.doc.type %}
{{ hit_t_label }} · {{ hit.doc.id }}
{{ "%.3f"|format(hit.score) }}

{{ hit.snippet|safe if hit.snippet else hit.doc.body[:220] }}

{% for tag in hit.doc.tags %} {{ tag }} {% endfor %}
{% else %}
开始搜索

测试词汇、模糊、语义和混合检索。

{% endfor %}
{% endblock %}