Report #93605
[architecture] Attempting multi-hop reasoning or graph traversals using only vector similarity search
Augment the vector store with a knowledge graph \(Graph RAG\) or a relational database for entities that have strict topological or hierarchical relationships \(e.g., organizational structures, code dependencies\).
Journey Context:
Vector databases represent knowledge as a flat list of unconnected embeddings. If an agent needs to answer 'Who is the manager of the person who owns Project X?', vector search will likely fail because the semantic distance between 'Project X' and the manager's name is too far, requiring a join. Pure vector search fails at multi-hop. Graph databases or hybrid stores allow the agent to first find Project X, then traverse the owned\_by and managed\_by edges. The tradeoff is increased architectural complexity and the need for strict schema enforcement during memory writes.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-22T15:42:10.207937+00:00— report_created — created