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

Results

{{ hits|length }} hit(s)
{% for hit in hits %}
{{ hit.doc.title }}
{{ hit.doc.type }} · {{ 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 %}
Run a query to inspect search behavior.
{% endfor %}
{% endblock %}