Memory Entry Detail

ID{{ entry.id }}
Agent ID{{ entry.agent_id or '—' }}
Type{{ entry.memory_type }}
Trust Score{{ '%.4f' | format(entry.trust_score) if entry.trust_score is not none else '—' }}
Created{{ entry.created_at.isoformat() if entry.created_at else '—' }}
Last Accessed{{ entry.last_accessed.isoformat() if entry.last_accessed else '—' }}

Content

{{ entry.content or '' }}
{% if entry.provenance %}

Provenance

{% for key, value in entry.provenance.items() %} {% endfor %}
{{ key }} {% if key == 'content_hash' %}{{ value[:16] }}…{% else %}{{ value }}{% endif %}
{% endif %} {% if entry.metadata %}

Metadata

{% for key, value in entry.metadata.items() %} {% endfor %}
{{ key }}{{ value }}
{% endif %}