Labels
{{ detail.labels|join(", ") }}
Scope
{{ detail.scope or "unknown" }}
Session
{{ detail.session_id or "none" }}
Source
{{ detail.source or "unknown" }}
Created
{{ detail.created_at }}
{% if "Entity" in detail.labels %}
Entity Summary
{{ detail.summary or "No summary available." }}
{% endif %}
Intelligence & Stats
{% if detail.user_flagged %}user_flagged{% endif %}
{% if detail.freshness %}Freshness: {{ detail.freshness }}{% endif %}
{% if detail.sharpness %}Sharpness: {{ "%.2f"|format(detail.sharpness) }}{% endif %}
{% if detail.nodes_touched or detail.edges_touched %}
{{ detail.nodes_touched or 0 }} nodes / {{ detail.edges_touched or 0 }} edges touched
{% endif %}
{% if detail.emotions %}
Emotions: {{ detail.emotions|tojson }}
{% endif %}
Raw Content
{{ detail.content or "No raw content." }}
Neighbors
{% if detail.neighbors %}
{% for neighbor in detail.neighbors %}
{% endfor %}
{% else %}
No direct neighbors found.
{% endif %}
Provenance (Episodes)
{% if detail.episodes %}
{% for episode in detail.episodes %}
{% endfor %}
{% else %}
No linked episodes found.
{% endif %}