|
16 | 16 | /agent/memories: |
17 | 17 | post: |
18 | 18 | operationId: writeMemory |
| 19 | + x-openai-isConsequential: false |
19 | 20 | summary: Write a structured memory entry |
20 | 21 | requestBody: |
21 | 22 | required: true |
|
83 | 84 | /agent/memories/latest: |
84 | 85 | get: |
85 | 86 | operationId: getLatestMemory |
| 87 | + x-openai-isConsequential: false |
86 | 88 | summary: Get the single most recent memory (strict chronological) |
87 | 89 | description: "Most recent memory by created_at. Use for 'latest' or 'most recent' -- never use /query for recency. Optional ?tag= filters to that tag (e.g. ?tag=project_state)." |
88 | 90 | parameters: |
@@ -114,6 +116,7 @@ paths: |
114 | 116 | /agent/memories/{id}: |
115 | 117 | get: |
116 | 118 | operationId: getMemoryById |
| 119 | + x-openai-isConsequential: false |
117 | 120 | summary: Get a single memory by ID (full body) |
118 | 121 | description: > |
119 | 122 | Deterministic full-body retrieval of a specific memory by its UUID. |
@@ -149,6 +152,7 @@ paths: |
149 | 152 | /agent/memories/by-tag: |
150 | 153 | post: |
151 | 154 | operationId: getMemoriesByTag |
| 155 | + x-openai-isConsequential: false |
152 | 156 | summary: Get full-body memories filtered by tags |
153 | 157 | description: > |
154 | 158 | Returns complete memory entries (with content) matching any of the given tags. |
@@ -210,6 +214,7 @@ paths: |
210 | 214 | /agent/memories/browse: |
211 | 215 | post: |
212 | 216 | operationId: browseMemories |
| 217 | + x-openai-isConsequential: false |
213 | 218 | summary: Browse memory summaries (lightweight, no content) |
214 | 219 | description: > |
215 | 220 | Returns memory metadata (title, tags, origin, timestamps) without full content. |
@@ -303,6 +308,7 @@ paths: |
303 | 308 | /query: |
304 | 309 | post: |
305 | 310 | operationId: queryMemory |
| 311 | + x-openai-isConsequential: false |
306 | 312 | summary: Query AI with memory context |
307 | 313 | description: "AI answer grounded in selected memories. Use memory_filter to select which memories. Returns slim response (answer + metadata). Browse first, then query with tags or IDs." |
308 | 314 | requestBody: |
@@ -382,6 +388,7 @@ paths: |
382 | 388 | /whoami: |
383 | 389 | get: |
384 | 390 | operationId: whoAmI |
| 391 | + x-openai-isConsequential: false |
385 | 392 | summary: Check resolved identity from auth key |
386 | 393 | responses: |
387 | 394 | "200": |
|
0 commit comments