{% extends "base.html" %} {% block title %}Conversations{% endblock %} {% block content %}

Conversations Ikario

Liste des conversations David-Ikario

· · ·

🔍 Recherche sémantique


📚 Toutes les conversations ({{ conversations|length }})

{% if conversations %}
{% for conv in conversations %}
{{ conv.conversation_id }} {{ conv.category }} {{ conv.message_count }} messages
{{ conv.summary }}
{{ conv.timestamp_start[:10] if conv.timestamp_start else 'Date inconnue' }} Participants: {{ conv.participants|join(', ') if conv.participants else 'N/A' }}
{% endfor %}
{% else %}

Aucune conversation trouvée

{% endif %}
Retour aux recherches Memory
{% endblock %}