Memories
Append content to an engram
Append content to an existing engram.
For conversation engrams:
- Provide messages array with content, role, and optional metadata
- Works like /conversations/{id}/messages endpoint
For document engrams:
- Provide either raw_text or chunks to append additional content
- Content will be processed and added to the engram
post/v1/memories/{id}/append
Path parameters
idstring uuid required
The unique identifier of the engram
The unique identifier of the engram
Request body
Response
Successful Response
Example response
{
"results": {
"message": {
"content": "This is a test message.",
"role": "user"
}
}
}