forked from Rockachopa/Timmy-time-dashboard
This commit implements six major features: 1. Event Log System (src/swarm/event_log.py) - SQLite-based audit trail for all swarm events - Task lifecycle tracking (created, assigned, completed, failed) - Agent lifecycle tracking (joined, left, status changes) - Integrated with coordinator for automatic logging - Dashboard page at /swarm/events 2. Lightning Ledger (src/lightning/ledger.py) - Transaction tracking for Lightning Network payments - Balance calculations (incoming, outgoing, net, available) - Integrated with payment_handler for automatic logging - Dashboard page at /lightning/ledger 3. Semantic Memory / Vector Store (src/memory/vector_store.py) - Embedding-based similarity search for Echo agent - Fallback to keyword matching if sentence-transformers unavailable - Personal facts storage and retrieval - Dashboard page at /memory 4. Cascade Router Integration (src/timmy/cascade_adapter.py) - Automatic LLM failover between providers (Ollama → AirLLM → API) - Circuit breaker pattern for failing providers - Metrics tracking per provider (latency, error rates) - Dashboard status page at /router/status 5. Self-Upgrade Approval Queue (src/upgrades/) - State machine for self-modifications: proposed → approved/rejected → applied/failed - Human approval required before applying changes - Git integration for branch management - Dashboard queue at /self-modify/queue 6. Real-Time Activity Feed (src/events/broadcaster.py) - WebSocket-based live activity streaming - Bridges event_log to dashboard clients - Activity panel on /swarm/live Tests: - 101 unit tests passing - 4 new E2E test files for Selenium testing - Run with: SELENIUM_UI=1 pytest tests/functional/ -v --headed Documentation: - 6 ADRs (017-022) documenting architecture decisions - Implementation summary in docs/IMPLEMENTATION_SUMMARY.md - Architecture diagram in docs/architecture-v2.md
120 lines
3.9 KiB
HTML
120 lines
3.9 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Memory Browser - Timmy Time{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="mc-panel">
|
|
<div class="mc-panel-header">
|
|
<h1 class="page-title">Memory Browser</h1>
|
|
<p class="mc-text-secondary">Semantic search through conversation history and facts</p>
|
|
</div>
|
|
|
|
<!-- Stats -->
|
|
<div class="mc-stats-row">
|
|
<div class="mc-stat-card">
|
|
<div class="mc-stat-value">{{ stats.total_entries }}</div>
|
|
<div class="mc-stat-label">Total Memories</div>
|
|
</div>
|
|
<div class="mc-stat-card">
|
|
<div class="mc-stat-value">{{ stats.with_embeddings }}</div>
|
|
<div class="mc-stat-label">With Embeddings</div>
|
|
</div>
|
|
<div class="mc-stat-card">
|
|
<div class="mc-stat-value">{% if stats.has_embedding_model %}✓{% else %}○{% endif %}</div>
|
|
<div class="mc-stat-label">AI Search</div>
|
|
</div>
|
|
{% for type, count in stats.by_type.items() %}
|
|
<div class="mc-stat-card">
|
|
<div class="mc-stat-value">{{ count }}</div>
|
|
<div class="mc-stat-label">{{ type }}</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
<!-- Search -->
|
|
<div class="mc-search-section">
|
|
<form method="get" action="/memory" class="mc-search-form">
|
|
<input
|
|
type="search"
|
|
name="query"
|
|
class="mc-search-input"
|
|
placeholder="Search memories..."
|
|
value="{{ query or '' }}"
|
|
autofocus
|
|
>
|
|
<button type="submit" class="mc-btn mc-btn-primary">Search</button>
|
|
</form>
|
|
|
|
{% if query %}
|
|
<p class="mc-search-info">Searching for: "{{ query }}"</p>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<!-- Search Results -->
|
|
{% if query %}
|
|
<div class="mc-results-section">
|
|
<h3>Search Results</h3>
|
|
|
|
{% if results %}
|
|
<div class="memory-results">
|
|
{% for mem in results %}
|
|
<div class="memory-entry" data-relevance="{{ mem.relevance_score }}">
|
|
<div class="memory-header">
|
|
<span class="memory-source">{{ mem.source }}</span>
|
|
<span class="memory-type mc-badge">{{ mem.context_type }}</span>
|
|
{% if mem.relevance_score %}
|
|
<span class="memory-score">{{ "%.2f"|format(mem.relevance_score) }}</span>
|
|
{% endif %}
|
|
</div>
|
|
<div class="memory-content">{{ mem.content }}</div>
|
|
<div class="memory-meta">
|
|
<span class="memory-time">{{ mem.timestamp[11:16] }}</span>
|
|
{% if mem.agent_id %}
|
|
<span class="memory-agent">Agent: {{ mem.agent_id[:8] }}...</span>
|
|
{% endif %}
|
|
{% if mem.task_id %}
|
|
<span class="memory-task">Task: {{ mem.task_id[:8] }}...</span>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="mc-empty-state">
|
|
<p>No results found for "{{ query }}"</p>
|
|
<p class="mc-text-secondary">Try different keywords or check spelling.</p>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<!-- Personal Facts -->
|
|
<div class="mc-facts-section">
|
|
<div class="mc-section-header">
|
|
<h3>Personal Facts</h3>
|
|
<button class="mc-btn mc-btn-small" onclick="document.getElementById('add-fact-form').style.display='block'">
|
|
+ Add Fact
|
|
</button>
|
|
</div>
|
|
|
|
<form id="add-fact-form" class="mc-inline-form" method="post" action="/memory/fact" style="display:none;" hx-post="/memory/fact" hx-target=".mc-facts-list">
|
|
<input type="text" name="fact" class="mc-input" placeholder="Enter a fact..." required>
|
|
<button type="submit" class="mc-btn mc-btn-primary">Save</button>
|
|
<button type="button" class="mc-btn" onclick="document.getElementById('add-fact-form').style.display='none'">Cancel</button>
|
|
</form>
|
|
|
|
<div class="mc-facts-list">
|
|
{% if facts %}
|
|
<ul class="mc-fact-list">
|
|
{% for fact in facts %}
|
|
<li class="memory-fact">{{ fact }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<p class="mc-text-secondary">No personal facts stored yet.</p>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|