Memory Node Catalog
Generated category
Memory Node Catalog
Generated from 9 catalog nodes in AI/Memory.
Nodes in this category
Showing 9 of 9 generated node docs.
Build Memory Context
AI/MemoryAssembles retrieved memory records into a token-budgeted context string for injection into agent system prompts
Compress Memory
AI/MemoryCompresses old memory observations into a summary using an LLM, then replaces them in the store. Runs the embedding model to store the summary vector.
Create Memory Config
AI/MemoryCreates a MemoryConfig that bundles database, embedding model, and tuning parameters for all memory nodes
Optimize Memory
AI/MemoryRuns LanceDB maintenance on the memory table: flush buffered writes, compact fragments, prune old versions, and rebuild indices. Run periodically or after bulk writes.
Search Memory
AI/MemorySearches the memory store using the configured recall strategy (recent, relevance, or hybrid)
Store Memory
AI/MemoryEmbeds text and stores it as a memory observation in the configured LanceDB table
KG Extract
AI/Memory/GraphExtracts entities (nodes) and relationships (edges) from text using an LLM, returning structured arrays ready for graph insertion
KG Retrieve
AI/Memory/GraphRetrieves context from a knowledge graph: embeds the query, finds matching nodes, then expands N hops to build structured context
KG Summarize
AI/Memory/GraphConverts a subgraph (nodes + edges) into a natural-language summary for LLM consumption