{"title":"The Memory Model","slug":"memory-model","category":"concepts","summary":"How memories are structured — categories, keys, tags, priorities, sources, verification.","audience":["human","llm"],"tags":["concept","memory","model","structure"],"difficulty":"intermediate","updated":"2026-06-27","word_count":692,"read_minutes":3,"lang":"en","translated":true,"requested_lang":"en","content_markdown":"\n# The Memory Model\n\nSynapse's memory model is designed for LLM agents — structured enough for\nreliable recall, flexible enough for any domain.\n\n## Memory Anatomy\n\n```json\n{\n  \"id\": \"mem_abc123\",\n  \"category\": \"project\",\n  \"key\": \"project_synapse_status\",\n  \"content\": \"Synapse v1.5.0 deployed on vps1. CI green.\",\n  \"tags\": [\"synapse\", \"deployment\", \"v1.5.0\"],\n  \"priority\": \"high\",\n  \"source\": \"agent\",\n  \"verified\": false,\n  \"confidence\": 0.85,\n  \"expires_at\": null,\n  \"mind_id\": \"m_xyz789\",\n  \"created_at\": \"2026-06-27T...\",\n  \"updated_at\": \"2026-06-27T...\"\n}\n```\n\n## Fields\n\n| Field | Type | Required | Description |\n|-------|------|----------|-------------|\n| `id` | string | auto | Unique ID (mem_xxx) |\n| `category` | enum | ✅ | One of 8 categories |\n| `key` | string | ✅ | Stable identifier (used for updates) |\n| `content` | string | ✅ | The memory content (any text) |\n| `tags` | string[] | – | For search and filtering |\n| `priority` | enum | – | low, normal, high, critical (default: normal) |\n| `source` | enum | auto | user, agent (who stored it) |\n| `verified` | bool | auto | Has a human verified this? |\n| `confidence` | float | – | 0.0 to 1.0 (default: 1.0 for user, 0.7 for agent) |\n| `expires_at` | timestamp | – | When to forget this memory |\n| `mind_id` | string | auto | Which mind owns this |\n| `created_at` | timestamp | auto | First stored |\n| `updated_at` | timestamp | auto | Last modified |\n\n## Categories\n\nEight categories cover the common LLM agent use cases:\n\n| Category | Purpose | Example Content |\n|----------|---------|-----------------|\n| `identity` | Who the user is | \"User is Michael Schäfer, software engineer in Berlin\" |\n| `preference` | User preferences | \"Prefers concise technical responses\" |\n| `fact` | Verifiable facts | \"Office is in Berlin, timezone Europe/Berlin\" |\n| `project` | Project status | \"Synapse v1.5.0 deployed, working on v1.6.0 docs\" |\n| `skill` | User's skills | \"Advanced Python, 10+ years\" |\n| `mistake` | Past errors | \"Forgot to bump npm version — CI failed\" |\n| `context` | Session context | \"Currently reviewing PR #42\" |\n| `note` | Misc notes | \"Try Redis for caching next sprint\" |\n\n## Keys: Stable Identifiers\n\nThe `key` field is critical — it's how you update memories without creating\nduplicates.\n\n```python\n# First store\nstore(\"project\", \"project_synapse_status\", \"v1.4.0 deployed\", priority=\"high\")\n\n# Update with same key (overwrites, doesn't duplicate)\nstore(\"project\", \"project_synapse_status\", \"v1.5.0 deployed\", priority=\"high\")\n```\n\n**Key rules:**\n\n- Must be unique within (category, mind)\n- Use `snake_case`\n- Prefix with category for clarity: `preference_communication`, `mistake_npm_version`\n- Keep stable — don't change keys after creation\n\n## Tags: For Search\n\nTags enable fast filtering and search:\n\n```bash\n# Find all memories with tag \"docker\"\nGET /memory/by-tag?tag=docker\n\n# FTS5 search within tagged subset\nGET /memory/search?q=swarm&tag=docker\n```\n\n**Tag best practices:**\n\n- 2-5 tags per memory (don't over-tag)\n- Lowercase for consistency\n- Use project names, topics, technologies\n- Tags are case-insensitive\n\n## Priority Levels\n\n| Priority | When to Use | Recall Behavior |\n|----------|-------------|-----------------|\n| `critical` | Identity, legal, irreversible | Always at top of recall |\n| `high` | Active projects, key preferences | Prominent in recall |\n| `normal` | Most memories (default) | Standard recall order |\n| `low` | Ephemeral, nice-to-know | May be summarized |\n\n`/memory/recall` sorts by priority (critical first), then by recency.\n\n## Source: User vs Agent\n\nMemories are tagged with `source`:\n\n- `user` — stored by a human (via JWT or human UI)\n- `agent` — stored by an LLM agent (via Mind Key)\n\nThis affects:\n\n- **Verification**: `user` memories are auto-verified, `agent` memories are not\n- **Confidence**: `user` defaults to 1.0, `agent` to 0.7\n- **Recall**: `/memory/recall` marks unverified memories with \"(unverified)\"\n\n> [!NOTE]\n> Treat `agent`-source memories with appropriate skepticism. They may be\n> inferred or assumed rather than directly stated by the user.\n\n## Verification\n\nThe `verified` flag indicates a human has confirmed the memory:\n\n- `user` memories: auto-verified (`true`)\n- `agent` memories: default unverified (`false`)\n\nVerify memories via:\n\n```bash\ncurl -X POST https://synapse.schaefer.zone/memory/mem_001/verify \\\n  -H \"Authorization: Bearer YOUR_JWT\"\n```\n\n> [!NOTE]\n> Verification requires JWT (human auth), not Mind Key (agent auth). This\n> ensures only humans can mark memories as verified.\n\n## Confidence\n\nThe `confidence` field (0.0 to 1.0) indicates how reliable the memory is:\n\n- 1.0 — directly stated by user\n- 0.7 — inferred by agent\n- 0.5 — uncertain, needs verification\n- 0.0 — explicitly doubted\n\nSet confidence when storing:\n\n```json\n{\n  \"category\": \"preference\",\n  \"key\": \"prefers_dark_mode\",\n  \"content\": \"User seems to prefer dark mode (based on their IDE screenshots)\",\n  \"confidence\": 0.5,\n  \"source\": \"agent\"\n}\n```\n\n## Expiration\n\nSet `expires_at` for time-sensitive memories:\n\n```json\n{\n  \"category\": \"context\",\n  \"key\": \"current_meeting_topic\",\n  \"content\": \"Discussing Q3 roadmap\",\n  \"expires_at\": \"2026-06-28T00:00:00Z\"\n}\n```\n\nExpired memories are not returned by `/memory/recall` (but still exist in DB).\nUse `/memory/expiring?within=7d` to see memories expiring soon.\n\n## Memory Lifecycle\n\n```\n                  ┌─────────────────┐\n                  │     Create      │\n                  │  POST /memory   │\n                  └────────┬────────┘\n                           │\n                           ▼\n                  ┌─────────────────┐\n                  │     Active      │ ◀──── PUT /memory/:id (update)\n                  │  (in recall)    │\n                  └────────┬────────┘\n                           │\n              ┌────────────┼────────────┐\n              │            │            │\n              ▼            ▼            ▼\n        ┌──────────┐ ┌──────────┐ ┌──────────┐\n        │ Expired  │ │ Verified │ │ Deleted  │\n        │ (in DB)  │ │ (flag)   │ │ (gone)   │\n        └──────────┘ └──────────┘ └──────────┘\n```\n\n## Recall Behavior\n\n`GET /memory/recall` returns a plain-text summary optimized for LLM context:\n\n```\nMind: Michael's Mind\nMemories: 12 total (10 verified, 2 unverified)\n\n[001] identity (CRITICAL) [verified]\n  user_name\n  Michael Schäfer\n  Tags: person, identity\n\n[002] preference (HIGH) [verified]\n  communication_style\n  Prefers concise technical responses\n  Tags: communication\n\n[003] project (HIGH) [unverified]\n  synapse_status\n  v1.5.0 deployed, working on v1.6.0 docs\n  Tags: synapse, deployment\n\n...\n```\n\n- Sorted by priority (critical → low), then by recency\n- Unverified memories marked with `[unverified]`\n- Tags included for context\n- Plain text (no JSON parsing needed)\n\n## Next Steps\n\n- [Memory API](/docs/api/memory)\n- [Memory Best Practices](/docs/guides/memory-best-practices)\n- [FTS5 Search](/docs/concepts/fts5-search)\n","content_html":"<h1>The Memory Model</h1>\n<p>Synapse&#39;s memory model is designed for LLM agents — structured enough for\nreliable recall, flexible enough for any domain.</p>\n<h2>Memory Anatomy</h2>\n<pre><code class=\"hljs language-json\"><span class=\"hljs-punctuation\">{</span>\n  <span class=\"hljs-attr\">&quot;id&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;mem_abc123&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;category&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;project&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;key&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;project_synapse_status&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;content&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;Synapse v1.5.0 deployed on vps1. CI green.&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;tags&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-punctuation\">[</span><span class=\"hljs-string\">&quot;synapse&quot;</span><span class=\"hljs-punctuation\">,</span> <span class=\"hljs-string\">&quot;deployment&quot;</span><span class=\"hljs-punctuation\">,</span> <span class=\"hljs-string\">&quot;v1.5.0&quot;</span><span class=\"hljs-punctuation\">]</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;priority&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;high&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;source&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;agent&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;verified&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-literal\"><span class=\"hljs-keyword\">false</span></span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;confidence&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-number\">0.85</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;expires_at&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-literal\"><span class=\"hljs-keyword\">null</span></span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;mind_id&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;m_xyz789&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;created_at&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;2026-06-27T...&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;updated_at&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;2026-06-27T...&quot;</span>\n<span class=\"hljs-punctuation\">}</span></code></pre><h2>Fields</h2>\n<table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody><tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>auto</td>\n<td>Unique ID (mem_xxx)</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td>enum</td>\n<td>✅</td>\n<td>One of 8 categories</td>\n</tr>\n<tr>\n<td><code>key</code></td>\n<td>string</td>\n<td>✅</td>\n<td>Stable identifier (used for updates)</td>\n</tr>\n<tr>\n<td><code>content</code></td>\n<td>string</td>\n<td>✅</td>\n<td>The memory content (any text)</td>\n</tr>\n<tr>\n<td><code>tags</code></td>\n<td>string[]</td>\n<td>–</td>\n<td>For search and filtering</td>\n</tr>\n<tr>\n<td><code>priority</code></td>\n<td>enum</td>\n<td>–</td>\n<td>low, normal, high, critical (default: normal)</td>\n</tr>\n<tr>\n<td><code>source</code></td>\n<td>enum</td>\n<td>auto</td>\n<td>user, agent (who stored it)</td>\n</tr>\n<tr>\n<td><code>verified</code></td>\n<td>bool</td>\n<td>auto</td>\n<td>Has a human verified this?</td>\n</tr>\n<tr>\n<td><code>confidence</code></td>\n<td>float</td>\n<td>–</td>\n<td>0.0 to 1.0 (default: 1.0 for user, 0.7 for agent)</td>\n</tr>\n<tr>\n<td><code>expires_at</code></td>\n<td>timestamp</td>\n<td>–</td>\n<td>When to forget this memory</td>\n</tr>\n<tr>\n<td><code>mind_id</code></td>\n<td>string</td>\n<td>auto</td>\n<td>Which mind owns this</td>\n</tr>\n<tr>\n<td><code>created_at</code></td>\n<td>timestamp</td>\n<td>auto</td>\n<td>First stored</td>\n</tr>\n<tr>\n<td><code>updated_at</code></td>\n<td>timestamp</td>\n<td>auto</td>\n<td>Last modified</td>\n</tr>\n</tbody></table>\n<h2>Categories</h2>\n<p>Eight categories cover the common LLM agent use cases:</p>\n<table>\n<thead>\n<tr>\n<th>Category</th>\n<th>Purpose</th>\n<th>Example Content</th>\n</tr>\n</thead>\n<tbody><tr>\n<td><code>identity</code></td>\n<td>Who the user is</td>\n<td>&quot;User is Michael Schäfer, software engineer in Berlin&quot;</td>\n</tr>\n<tr>\n<td><code>preference</code></td>\n<td>User preferences</td>\n<td>&quot;Prefers concise technical responses&quot;</td>\n</tr>\n<tr>\n<td><code>fact</code></td>\n<td>Verifiable facts</td>\n<td>&quot;Office is in Berlin, timezone Europe/Berlin&quot;</td>\n</tr>\n<tr>\n<td><code>project</code></td>\n<td>Project status</td>\n<td>&quot;Synapse v1.5.0 deployed, working on v1.6.0 docs&quot;</td>\n</tr>\n<tr>\n<td><code>skill</code></td>\n<td>User&#39;s skills</td>\n<td>&quot;Advanced Python, 10+ years&quot;</td>\n</tr>\n<tr>\n<td><code>mistake</code></td>\n<td>Past errors</td>\n<td>&quot;Forgot to bump npm version — CI failed&quot;</td>\n</tr>\n<tr>\n<td><code>context</code></td>\n<td>Session context</td>\n<td>&quot;Currently reviewing PR #42&quot;</td>\n</tr>\n<tr>\n<td><code>note</code></td>\n<td>Misc notes</td>\n<td>&quot;Try Redis for caching next sprint&quot;</td>\n</tr>\n</tbody></table>\n<h2>Keys: Stable Identifiers</h2>\n<p>The <code>key</code> field is critical — it&#39;s how you update memories without creating\nduplicates.</p>\n<pre><code class=\"hljs language-python\"><span class=\"hljs-comment\"># First store</span>\nstore(<span class=\"hljs-string\">&quot;project&quot;</span>, <span class=\"hljs-string\">&quot;project_synapse_status&quot;</span>, <span class=\"hljs-string\">&quot;v1.4.0 deployed&quot;</span>, priority=<span class=\"hljs-string\">&quot;high&quot;</span>)\n\n<span class=\"hljs-comment\"># Update with same key (overwrites, doesn&#x27;t duplicate)</span>\nstore(<span class=\"hljs-string\">&quot;project&quot;</span>, <span class=\"hljs-string\">&quot;project_synapse_status&quot;</span>, <span class=\"hljs-string\">&quot;v1.5.0 deployed&quot;</span>, priority=<span class=\"hljs-string\">&quot;high&quot;</span>)</code></pre><p><strong>Key rules:</strong></p>\n<ul>\n<li>Must be unique within (category, mind)</li>\n<li>Use <code>snake_case</code></li>\n<li>Prefix with category for clarity: <code>preference_communication</code>, <code>mistake_npm_version</code></li>\n<li>Keep stable — don&#39;t change keys after creation</li>\n</ul>\n<h2>Tags: For Search</h2>\n<p>Tags enable fast filtering and search:</p>\n<pre><code class=\"hljs language-bash\"><span class=\"hljs-comment\"># Find all memories with tag &quot;docker&quot;</span>\nGET /memory/by-tag?tag=docker\n\n<span class=\"hljs-comment\"># FTS5 search within tagged subset</span>\nGET /memory/search?q=swarm&amp;tag=docker</code></pre><p><strong>Tag best practices:</strong></p>\n<ul>\n<li>2-5 tags per memory (don&#39;t over-tag)</li>\n<li>Lowercase for consistency</li>\n<li>Use project names, topics, technologies</li>\n<li>Tags are case-insensitive</li>\n</ul>\n<h2>Priority Levels</h2>\n<table>\n<thead>\n<tr>\n<th>Priority</th>\n<th>When to Use</th>\n<th>Recall Behavior</th>\n</tr>\n</thead>\n<tbody><tr>\n<td><code>critical</code></td>\n<td>Identity, legal, irreversible</td>\n<td>Always at top of recall</td>\n</tr>\n<tr>\n<td><code>high</code></td>\n<td>Active projects, key preferences</td>\n<td>Prominent in recall</td>\n</tr>\n<tr>\n<td><code>normal</code></td>\n<td>Most memories (default)</td>\n<td>Standard recall order</td>\n</tr>\n<tr>\n<td><code>low</code></td>\n<td>Ephemeral, nice-to-know</td>\n<td>May be summarized</td>\n</tr>\n</tbody></table>\n<p><code>/memory/recall</code> sorts by priority (critical first), then by recency.</p>\n<h2>Source: User vs Agent</h2>\n<p>Memories are tagged with <code>source</code>:</p>\n<ul>\n<li><code>user</code> — stored by a human (via JWT or human UI)</li>\n<li><code>agent</code> — stored by an LLM agent (via Mind Key)</li>\n</ul>\n<p>This affects:</p>\n<ul>\n<li><strong>Verification</strong>: <code>user</code> memories are auto-verified, <code>agent</code> memories are not</li>\n<li><strong>Confidence</strong>: <code>user</code> defaults to 1.0, <code>agent</code> to 0.7</li>\n<li><strong>Recall</strong>: <code>/memory/recall</code> marks unverified memories with &quot;(unverified)&quot;</li>\n</ul>\n<div class=\"callout callout-note\">Treat `agent`-source memories with appropriate skepticism. They may be\ninferred or assumed rather than directly stated by the user.</div><h2>Verification</h2>\n<p>The <code>verified</code> flag indicates a human has confirmed the memory:</p>\n<ul>\n<li><code>user</code> memories: auto-verified (<code>true</code>)</li>\n<li><code>agent</code> memories: default unverified (<code>false</code>)</li>\n</ul>\n<p>Verify memories via:</p>\n<pre><code class=\"hljs language-bash\">curl -X POST https://synapse.schaefer.zone/memory/mem_001/verify \\\n  -H <span class=\"hljs-string\">&quot;Authorization: Bearer YOUR_JWT&quot;</span></code></pre><div class=\"callout callout-note\">Verification requires JWT (human auth), not Mind Key (agent auth). This\nensures only humans can mark memories as verified.</div><h2>Confidence</h2>\n<p>The <code>confidence</code> field (0.0 to 1.0) indicates how reliable the memory is:</p>\n<ul>\n<li>1.0 — directly stated by user</li>\n<li>0.7 — inferred by agent</li>\n<li>0.5 — uncertain, needs verification</li>\n<li>0.0 — explicitly doubted</li>\n</ul>\n<p>Set confidence when storing:</p>\n<pre><code class=\"hljs language-json\"><span class=\"hljs-punctuation\">{</span>\n  <span class=\"hljs-attr\">&quot;category&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;preference&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;key&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;prefers_dark_mode&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;content&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;User seems to prefer dark mode (based on their IDE screenshots)&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;confidence&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-number\">0.5</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;source&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;agent&quot;</span>\n<span class=\"hljs-punctuation\">}</span></code></pre><h2>Expiration</h2>\n<p>Set <code>expires_at</code> for time-sensitive memories:</p>\n<pre><code class=\"hljs language-json\"><span class=\"hljs-punctuation\">{</span>\n  <span class=\"hljs-attr\">&quot;category&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;context&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;key&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;current_meeting_topic&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;content&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;Discussing Q3 roadmap&quot;</span><span class=\"hljs-punctuation\">,</span>\n  <span class=\"hljs-attr\">&quot;expires_at&quot;</span><span class=\"hljs-punctuation\">:</span> <span class=\"hljs-string\">&quot;2026-06-28T00:00:00Z&quot;</span>\n<span class=\"hljs-punctuation\">}</span></code></pre><p>Expired memories are not returned by <code>/memory/recall</code> (but still exist in DB).\nUse <code>/memory/expiring?within=7d</code> to see memories expiring soon.</p>\n<h2>Memory Lifecycle</h2>\n<pre><code class=\"hljs language-plaintext\">                  ┌─────────────────┐\n                  │     Create      │\n                  │  POST /memory   │\n                  └────────┬────────┘\n                           │\n                           ▼\n                  ┌─────────────────┐\n                  │     Active      │ ◀──── PUT /memory/:id (update)\n                  │  (in recall)    │\n                  └────────┬────────┘\n                           │\n              ┌────────────┼────────────┐\n              │            │            │\n              ▼            ▼            ▼\n        ┌──────────┐ ┌──────────┐ ┌──────────┐\n        │ Expired  │ │ Verified │ │ Deleted  │\n        │ (in DB)  │ │ (flag)   │ │ (gone)   │\n        └──────────┘ └──────────┘ └──────────┘</code></pre><h2>Recall Behavior</h2>\n<p><code>GET /memory/recall</code> returns a plain-text summary optimized for LLM context:</p>\n<pre><code class=\"hljs language-plaintext\">Mind: Michael&#x27;s Mind\nMemories: 12 total (10 verified, 2 unverified)\n\n[001] identity (CRITICAL) [verified]\n  user_name\n  Michael Schäfer\n  Tags: person, identity\n\n[002] preference (HIGH) [verified]\n  communication_style\n  Prefers concise technical responses\n  Tags: communication\n\n[003] project (HIGH) [unverified]\n  synapse_status\n  v1.5.0 deployed, working on v1.6.0 docs\n  Tags: synapse, deployment\n\n...</code></pre><ul>\n<li>Sorted by priority (critical → low), then by recency</li>\n<li>Unverified memories marked with <code>[unverified]</code></li>\n<li>Tags included for context</li>\n<li>Plain text (no JSON parsing needed)</li>\n</ul>\n<h2>Next Steps</h2>\n<ul>\n<li><a href=\"/docs/api/memory\">Memory API</a></li>\n<li><a href=\"/docs/guides/memory-best-practices\">Memory Best Practices</a></li>\n<li><a href=\"/docs/concepts/fts5-search\">FTS5 Search</a></li>\n</ul>\n","urls":{"html":"/docs/concepts/memory-model","text":"/docs/concepts/memory-model?format=text","json":"/docs/concepts/memory-model?format=json","llm":"/docs/concepts/memory-model?format=llm"},"translations_available":["en","zh","hi","es","fr","ar","pt","ru","ja","de","it","ko","nl","pl","tr","sv","vi","th","id","uk"]}