{% extends "base.html" %} {% block title %}Memory Browser - Timmy Time{% endblock %} {% block content %}

Memory Browser

Semantic search through conversation history and facts

{{ stats.total_entries }}
Total Memories
{{ stats.with_embeddings }}
With Embeddings
{% if stats.has_embedding_model %}✓{% else %}○{% endif %}
AI Search
{% for type, count in stats.by_type.items() %}
{{ count }}
{{ type }}
{% endfor %}
{% if query %}

Searching for: "{{ query }}"

{% endif %}
{% if query %}

Search Results

{% if results %}
{% for mem in results %}
{{ mem.source }} {{ mem.context_type }} {% if mem.relevance_score %} {{ "%.2f"|format(mem.relevance_score) }} {% endif %}
{{ mem.content }}
{{ mem.timestamp[11:16] }} {% if mem.agent_id %} Agent: {{ mem.agent_id[:8] }}... {% endif %} {% if mem.task_id %} Task: {{ mem.task_id[:8] }}... {% endif %}
{% endfor %}
{% else %}

No results found for "{{ query }}"

Try different keywords or check spelling.

{% endif %}
{% endif %}

Personal Facts

{% if facts %}
    {% for fact in facts %}
  • {{ fact.content }}
  • {% endfor %}
{% else %}

No personal facts stored yet.

{% endif %}
{% endblock %}