aim_memory_get
Retrieve specific memories and their relations using exact entity names. Use for precise data retrieval when you know the exact names.
Instructions
Retrieve specific memories by exact name. Use this when you know exactly what you're looking for.
VS aim_memory_search: Use aim_memory_get for exact name lookup. Use aim_memory_search for fuzzy matching or when you don't know exact names.
RETURNS: Requested entities and relations between them. Non-existent names are silently ignored.
FORMAT OPTIONS:
"json" (default): Structured JSON for programmatic use
"pretty": Human-readable text format
EXAMPLES:
aim_memory_get({names: ["John", "TechConf2024"]}) - JSON format
aim_memory_get({names: ["Shane"], format: "pretty"}) - Human-readable
aim_memory_get({context: "work", names: ["Q4_Project"], format: "pretty"})
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| context | No | Optional memory context. Retrieves entities from the specified context's knowledge graph or master database if not specified. | |
| location | No | Optional storage location override. 'project' for .aim directory, 'global' for configured directory. | |
| names | Yes | An array of entity names to retrieve | |
| format | No | Output format. 'json' (default) for structured data, 'pretty' for human-readable text. |