{% extends "base.html" %} {% block title %}Memory Dashboard - Shared Context Server{% endblock %} {% block content %}
| Key | Agent | {% if current_scope == 'all' %}Scope | {% endif %}Value Preview | Created | Actions |
|---|---|---|---|---|---|
{{ entry.key|e }}
|
{{ entry.agent_id|e }} | {% if current_scope == 'all' %}{% if entry.session_id %} Session {% else %} Global {% endif %} | {% endif %}{% set value_text = entry.value|e %} {% if value_text|length > 100 %} {{ value_text[:100] }}... {% else %} {{ value_text }} {% endif %} |
When agents create global memory entries, they will appear here.