{% extends "themis/base.html" %} {% load humanize %} {% block title %}Search — Mnemosyne{% endblock %} {% block content %}

Search Knowledge

{% csrf_token %}
{% if error %}
{{ error }}
{% endif %} {% if results %}
Results
{{ results.candidates|length }}
Total Candidates
{{ results.total_candidates }}
Search Time
{{ results.search_time_ms|floatformat:0 }}ms
Re-ranked
{% if results.reranker_used %} Yes {% else %} No {% endif %}
Search Types
{% for st in results.search_types_used %} {{ st }} {% endfor %}
{% if results.candidates %}

Text Results

{% for candidate in results.candidates %}

{{ candidate.item_title }} chunk #{{ candidate.chunk_index }}

{{ candidate.text_preview }}

{{ candidate.score|floatformat:4 }} {% for src in candidate.source|cut:" " %} {{ src }} {% endfor %} {% if candidate.library_type %} {{ candidate.library_type }} {% endif %}
{% endfor %}
{% endif %} {% if results.images %}

Image Results

{% for image in results.images %}
{{ image.image_type }}

{{ image.description }}

{{ image.item_title|truncatechars:30 }} {{ image.score|floatformat:3 }}
{% endfor %}
{% endif %} {% elif query %}
No results found for "{{ query }}".
{% endif %}
{% endblock %}