{% if results %}

Found {{ results|length }} result(s){% if query %} for "{{ query }}"{% endif %}

{% for r in results %}
Score: {{ "%.2f"|format(r.score) }} · {{ r.session_id[:16] }} · Project: {{ r.project or 'unknown' }}
{{ r.chunk_text[:500] }}
{% if r.session_summary %} {% endif %}
{% endfor %} {% elif query %}

No results found for "{{ query }}".

{% else %}

Enter a search query to find past conversations.

{% endif %}