Description
memory_feedback records whether a retrieved memory was useful, irrelevant, outdated, or wrong. This signal helps surface quality issues and can be used to improve retrieval over time.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
memoryId | string | Yes | The memory ID to rate. Use the id returned by search_memory. |
type | string | Yes | Feedback type. One of the values below. |
context | string | No | Optional explanation of why this feedback is being submitted. Max 1,000 characters. |
Feedback types
| Type | When to use |
|---|---|
helpful | The memory was relevant and useful in the current context |
not_helpful | The memory was irrelevant to the current query |
outdated | The memory contains stale information that is no longer true |
wrong | The memory contains incorrect information |
Example
Response
Returns{ success: true } on success, or a 404 error if the memory was not found.