get_memory_summary
Generate a concise high-level summary of a memory document by providing its ID, aiding agents in quickly understanding project context and accumulated knowledge.
Instructions
Get a high-level summary of a memory document
Input Schema
Name | Required | Description | Default |
---|---|---|---|
memory_id | Yes | The ID of the memory document to summarize |
Input Schema (JSON Schema)
{
"properties": {
"memory_id": {
"description": "The ID of the memory document to summarize",
"type": "string"
}
},
"required": [
"memory_id"
],
"type": "object"
}