MemoryEntry
Defined in: src/memory/types.ts:9
A single memory entry retrieved from or stored to a memory store.
Properties
Section titled “Properties”content
Section titled “content”content: string;Defined in: src/memory/types.ts:11
The textual content of this memory entry.
storeName?
Section titled “storeName?”optional storeName?: string;Defined in: src/memory/types.ts:17
Name of the store this entry came from. Populated by MemoryManager.search so callers
(and the model, via search_memory) can tell which store produced each result and refine
targeting. Stores need not set this themselves.
metadata?
Section titled “metadata?”optional metadata?: Record<string, JSONValue>;Defined in: src/memory/types.ts:19
Optional metadata (e.g., score, source, id, timestamp).