AIAI > RAG & Retrieval

HybridRAG: Integrating Knowledge Graphs and Vector Retrieval Augmented Generation

arxiv.org15 min readsaved Feb 16, 2026
Open original
TL;DR

BlackRock & NVIDIA researchers propose HybridRAG — combining Knowledge Graph RAG (GraphRAG) with Vector RAG for financial document Q&A. The hybrid approach outperforms either method alone on earnings call transcripts, achieving higher answer relevancy and faithfulness because graph structure captures entity relationships that vector search misses.

Why it matters

If you're building RAG systems over complex documents (contracts, financial reports, research papers), this is a practical architecture showing how to combine graph and vector retrieval for meaningfully better accuracy.

Key points

  1. 1

    Problem: financial docs (earnings calls, 10-Ks) have complex entity relationships that pure vector search misses

  2. 2

    VectorRAG: good at semantic similarity but misses structured relationships between entities

  3. 3

    GraphRAG: builds KG of entities/relationships — great for structured queries, weaker on contextual prose

  4. 4

    HybridRAG: combines both approaches — KG for entity relationships + vectors for contextual similarity

  5. 5

    Evaluated on faithfulness, answer relevancy, context precision/recall — outperforms both standalone methods