Files
linear-coding-agent/generations/library_rag/templates/conversation_view.html
David Blanc Brioir 2f34125ef6 feat: Add Memory system with Weaviate integration and MCP tools
MEMORY SYSTEM ARCHITECTURE:
- Weaviate-based memory storage (Thought, Message, Conversation collections)
- GPU embeddings with BAAI/bge-m3 (1024-dim, RTX 4070)
- 9 MCP tools for Claude Desktop integration

CORE MODULES (memory/):
- core/embedding_service.py: GPU embedder singleton with PyTorch
- schemas/memory_schemas.py: Weaviate schema definitions
- mcp/thought_tools.py: add_thought, search_thoughts, get_thought
- mcp/message_tools.py: add_message, get_messages, search_messages
- mcp/conversation_tools.py: get_conversation, search_conversations, list_conversations

FLASK TEMPLATES:
- conversation_view.html: Display single conversation with messages
- conversations.html: List all conversations with search
- memories.html: Browse and search thoughts

FEATURES:
- Semantic search across thoughts, messages, conversations
- Privacy levels (private, shared, public)
- Thought types (reflection, question, intuition, observation)
- Conversation categories with filtering
- Message ordering and role-based display

DATA (as of 2026-01-08):
- 102 Thoughts
- 377 Messages
- 12 Conversations

DOCUMENTATION:
- memory/README_MCP_TOOLS.md: Complete API reference and usage examples

All MCP tools tested and validated (see test_memory_mcp_tools.py in archive).

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-08 18:08:13 +01:00

78 lines
3.2 KiB
HTML

{% extends "base.html" %}
{% block title %}Conversation: {{ conversation.conversation_id }}{% endblock %}
{% block content %}
<section class="section">
<h1 class="text-center">{{ conversation.conversation_id }}</h1>
<p class="lead text-center">Conversation David-Ikario</p>
<div class="ornament">· · ·</div>
<!-- Conversation Metadata -->
<div class="card">
<h2>📝 Détails de la conversation</h2>
<div class="mt-2">
<p><strong>Catégorie:</strong> <span class="badge">{{ conversation.category }}</span></p>
<p><strong>Participants:</strong> {{ conversation.participants|join(', ') if conversation.participants else 'N/A' }}</p>
<p><strong>Nombre de messages:</strong> {{ conversation.message_count }}</p>
<p><strong>Date de début:</strong> {{ conversation.timestamp_start[:19].replace('T', ' ') if conversation.timestamp_start else 'Inconnue' }}</p>
{% if conversation.timestamp_end %}
<p><strong>Date de fin:</strong> {{ conversation.timestamp_end[:19].replace('T', ' ') }}</p>
{% endif %}
{% if conversation.tags and conversation.tags|length > 0 %}
<p><strong>Tags:</strong> {{ conversation.tags|join(', ') }}</p>
{% endif %}
</div>
{% if conversation.summary %}
<hr style="margin: 1rem 0; border: none; border-top: 1px solid var(--color-bg-secondary);">
<div>
<strong>Résumé:</strong>
<p style="margin-top: 0.5rem; color: var(--color-text-main);">{{ conversation.summary }}</p>
</div>
{% endif %}
</div>
<hr class="divider">
<!-- Messages -->
<div class="card">
<h2>💬 Messages ({{ messages|length }})</h2>
{% if messages %}
<div class="mt-2">
{% for msg in messages %}
<div class="message-item" style="margin-bottom: 1.5rem; padding: 1rem; background: {% if msg.role == 'user' %}var(--color-bg-secondary){% else %}#fff{% endif %}; border-radius: 8px; border-left: 4px solid {% if msg.role == 'user' %}var(--color-accent){% else %}var(--color-accent-alt){% endif %};">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem;">
<span class="badge">{{ msg.role }}</span>
<span class="text-muted" style="font-size: 0.875rem;">
{{ msg.timestamp[:19].replace('T', ' ') if msg.timestamp else 'Date inconnue' }}
| Index: {{ msg.order_index }}
</span>
</div>
<div style="line-height: 1.6; white-space: pre-wrap;">{{ msg.content }}</div>
</div>
{% endfor %}
</div>
{% else %}
<p class="text-muted mt-2">Aucun message dans cette conversation</p>
{% endif %}
</div>
<div class="text-center mt-3">
<a href="/conversations" class="btn">← Retour aux conversations</a>
</div>
</section>
<style>
.message-item {
transition: transform 0.2s ease;
}
.message-item:hover {
transform: translateX(4px);
}
</style>
{% endblock %}