Route
/memory— opens the Memory inspector
Backing RPC
memory.search_files(query, limit)— vector + full-text searchmemory.browse(params)— paginated browse with filtersmemory.delete(id)— delete a single entry; pass an array of IDs for bulk deletionmemory.get_file(id)— single-entry detailmemory.stats()— store-wide statistics (total entries, vectors, database size)memory.ask(question)— grounded natural-language query over the memory store (default-on; disable per-agent withdialectic.enabled: false, or kill all cost features withmemory.costFeatures.enabled: false). An abstain response carries areason(empty_recall,synthesis_abstained,dialectic_unavailable,no_agent_scope) so an unwired dialectic is never mistaken for “no data”.memory.store(entry)— store a new memory entrymemory.flush()— flush the memory storememory.export()— export a memory snapshot
What You See
When you open the Memory view, the top of the page displays four summary cards:- Total Entries — the total number of memories stored across all agents.
- Sessions — how many conversation sessions have contributed to the memory store.
- Vectors — how many entries have been embedded for semantic (meaning-based) search.
- Database Size — the current size of the memory database on disk.
- Mode toggle — switch between Search mode (find specific memories by keyword or meaning) and Browse All mode (page through every entry).
- Filter bar — narrow your results using four filter types:
- Memory type checkboxes — select which types of memory to include (working, episodic, semantic, or procedural).
- Trust level checkboxes — filter by how the memory was created (system, learned, or external).
- Agent dropdown — show memories from a specific agent or all agents.
- Date range picker — limit results to a specific time period.
- Results table — displays matching entries with selectable rows (checkboxes) for bulk actions.
Searching Memories
Switch to Search mode
Click the Search button in the mode toggle at the top of the page. A search box appears next to the toggle.
Type your query
Enter a word, phrase, or question in the search box and press Enter. You can search by content, topic, or keyword.
Review results
Results appear below, ranked by relevance. Each row shows the memory content, type, trust level, agent, and creation date.
Browsing All Memories
Switch to Browse All mode
Click the Browse All button in the mode toggle. The view automatically loads the first page of entries.
Use filters to narrow results
Check or uncheck memory type and trust level checkboxes, select a specific agent from the dropdown, or set a date range to focus on the entries you care about.
Working with Memories
Viewing Details
Click any row in the results table to open a slide-out detail panel on the right side of the screen. The panel shows the full memory content along with all metadata — type, trust level, agent, creation date, tags, and whether the entry has a vector embedding. You can close the panel by clicking the X button or clicking outside it.Bulk Actions
Select multiple entries by clicking the checkboxes next to each row. A bulk actions bar appears showing the number of selected entries and two action buttons:- Delete Selected — permanently removes the selected entries. A confirmation dialog appears before the delete happens.
- Export Selected — downloads the selected entries as a JSONL file.
Exporting All Results
Click the Export JSONL button in the results header to download all currently visible results as a JSONL file. This works in both Search and Browse All modes.Memory Concepts
Learn how agents store and retrieve memories.
Search Documentation
Understand how semantic and keyword search works.
