Data
Extract Memories
Extract typed memory candidates from chat-style conversation turns.
POST
Overview
Distills a chat-style conversation transcript into typed memory candidates, using the same Moorcheh answer-generation path as the RAG Answer endpoint. Candidates are auto-classified into valid memory types, de-duplicated, confidence-scored, and taggedconversation-extract. Secrets, API keys, and tokens are explicitly excluded by the extraction prompt.
When dry_run is true, candidates are returned without writing. Otherwise the candidates are persisted through the same batch memory path used by Batch Remember.
Authentication
API clients do not send an API key orAuthorization header.
Session token from Activate Agent. Must match
agent_id.Path Parameters
The unique identifier of the agent.
Body
Array of
{role, content} conversation message objects. Bounded to 200 messages.When
true, returns extracted candidates without storing them. Defaults to false.Maximum number of memories to extract. Bounded to 100.
Optional model override for extraction. If omitted, the server default applies.
Next Steps
- Remember to store a single memory directly
- Batch Remember to store a pre-built list of memories
- Recall to search stored memories