aka Semantic Memory, Embedding-Indexed Memory
Store memories as embeddings in a vector index and retrieve the most semantically similar items at query time.
Long-running agents accumulate facts/observations whose relevance is best judged by similarity to the current context.
Append-only logs grow unboundedly; without semantic retrieval the agent cannot find the relevant past.
Each memory item is embedded and indexed. At query time, embed the query (or a summary of current state), retrieve top-k most similar memories, prepend to context. Optional decay (boost recent, age old) and salience weighting.
used-by → memgpt-pagingspecialises → naive-rag — Vector Memory is RAG over the agent's own past.alternative-to → knowledge-graph-memory