{% if similar %}
{{ similar | length }} Related Conversation{{ 's' if similar | length != 1 else '' }}
Found using semantic similarity analysis
{% for conv in similar %} {% set similarity_pct = (conv.similarity_score * 100) | round | int %} {% if similarity_pct >= 70 %}{% set score_color = 'hsl(var(--success))' %} {% elif similarity_pct >= 50 %}{% set score_color = 'hsl(var(--warning))' %} {% else %}{% set score_color = 'hsl(var(--text-tertiary))' %}{% endif %}
{{ conv.title or 'Untitled' }}
{% if conv.tool %} {{ conv.tool }} {% endif %} {% if conv.project_id %} {{ conv.project_id }} {% endif %} · {{ conv.message_count or 0 }} messages {% if conv.created_at %} · {{ conv.created_at[:10] }} {% endif %}
{{ similarity_pct }}% match
{% endfor %} {% else %}
No similar conversations found
This conversation appears to be unique
{% endif %}