RAG Is Not Memory: Why Vector Similarity Pollutes Agent Context
Agents should not use semantic vector similarity as their memory layer because embedding-space closeness is uncorrelated with business relevance; memory must be constrained by domain meaning to avoid irrelevant recall and hallucinations.
AngleUse the media-assistant failure (dog names and wake-up times surfacing for music questions) to demonstrate that top-k vector recall is a context-pollution risk, not a memory architecture.
Source video ↗What Graph Structure Adds to Agent Memory That Embeddings Cannot
Embedding vectors encode lexical/semantic proximity but not causal, relational, or business-logic context; persisting relationships in a graph gives agents the structural cues needed to retrieve the right memory at the right time.
AngleArgue from the architectural claim that embeddings lack relational context, and then explain how typed edges and temporal graph evolution substitute a full flat fact store.
Source video ↗Your Agent Memory Schema Is a Product Decision, Not an Infrastructure Detail
Defining custom entity types, relations, and business rules in code makes memory an application-level contract; teams that design schemas before choosing storage will get more maintainable and relevant agent memory than teams that depend on generic vector recall.
AngleTreat TypeScript/Pydantic/Zod schemas as typed API contracts for the memory layer, with the financial-goals/debt/income example as evidence of domain modeling.
Source video ↗Verify the 18.5%: Benchmarking Memory Architectures Honestly
Before adopting knowledge-graph memory because of headline accuracy numbers, teams should demand disclosed baselines and experimental controls; honest comparisons against full-context and vector-only memory will determine whether structured retrieval is genuinely superior.
AngleSkeptical methodology piece around the reported LongMemEval result, using pass-1 insight that the methodology is undisclosed and the claim is weak until verified.
Source video ↗