Miriam Kümmel & Mathis Lucka8 min read

Graph, vector, or both? What works best for agentic RAG

We compare agentic graph, agentic vector, hybrid, and naive RAG systems on PlaceboBench to determine which retrieval strategy produces the best answers.

While some proclaim that "RAG is dead," giving LLMs access to internal knowledge remains one of the primary ways to leverage AI in the enterprise. What has changed since the original RAG paper was published in 2020 are the strategies systems use to select data for answering questions.

Many modern approaches are agentic: instead of searching for relevant documents once, agents can repeatedly search and filter before answering. They can also query databases directly using languages such as SQL or Cypher.

Benchmark and systems

We use PlaceboBench, a dataset of 69 questions from real clinicians about prescription medicines. The questions are answered using product information published by the European Medicines Agency (EMA).

The four systems tested were:

How it works
QuestionAgentKnowledge GraphAnswer

The model is equipped with a tool to query a Neo4j knowledge graph. It passes a Cypher query to the tool and receives the result of that query. The underlying graph is created by an agent that transforms unstructured PDFs from the EMA into highly structured relational data.

All four systems use GPT-5.4 with thinking set to "high." It has the lowest hallucination rate on PlaceboBench and has performed well on this task.

Evaluation

We report two metrics: hallucination rate and pairwise win rate. Hallucination rate measures the percentage of answers containing claims unsupported by the retrieved evidence. Win rate compares answers from two systems and asks an LLM judge which is better.

We measure hallucination rate with a Blue Guardrails evaluator that checks whether claims are grounded in the retrieved evidence. The evaluator achieves an F1 score of 0.85 against human review on PlaceboBench.

For win rate, an LLM judge receives the question, two system answers, and the detected issues in each answer. It considers hallucination severity, relevance, clarity, and depth before deciding whether System A wins, System B wins, or the systems tie.

We shuffle the system order to reduce presentation bias and use Gemini 3.8 Flash as the judge. Each sample is judged five times, and we report the average win rate.

Results

Hallucination rate

Hallucination rate as measured on PlaceboBench; lower is better.
Confirmed hallucination counts and rates by RAG system
SystemAnswers with confirmed hallucinationsRate
Hybrid6 / 698.7%
Graph10 / 6914.5%
Agentic21 / 6930.4%
Naive16 / 6923.2%

Hybrid RAG has the lowest hallucination rate at 8.7%, followed by agentic graph RAG at 14.5% and naive RAG at 23.2%. Agentic vector RAG has the highest rate at 30.4%.

At 8.7%, hybrid RAG would rank among the best-performing production systems evaluated by Blue Guardrails.

Pairwise win rate

Hybrid winsTieHybrid losesError bars: ±1 SD
Pairwise win rate for each system. Error bars indicate variance across repeated judge runs.
Pairwise judge results with mean and standard deviation in percentage points
ComparisonWinTieLoss
Hybrid vs. Graph49.0% ± 1.6 pp31.6% ± 1.6 pp19.4% ± 1.3 pp
Hybrid vs. Agentic51.6% ± 2.2 pp25.2% ± 1.9 pp23.2% ± 2.3 pp
Hybrid vs. Naive61.4% ± 1.7 pp10.7% ± 1.9 pp27.8% ± 3.5 pp
Graph vs. Agentic39.7% ± 1.3 pp30.1% ± 1.9 pp30.1% ± 1.2 pp
Graph vs. Naive53.0% ± 1.3 pp6.7% ± 1.7 pp40.3% ± 1.9 pp
Agentic vs. Naive51.6% ± 2.2 pp6.1% ± 2.8 pp42.3% ± 1.2 pp

The trend continues in the pairwise comparisons. Hybrid RAG produced better answers than all other systems in this evaluation. Agentic graph RAG wins two of its three pairings, although its advantage over agentic vector RAG is narrow. Naive RAG produces the lowest answer quality on average.

Agentic vector RAG has the highest hallucination rate, while naive RAG ranks lowest in pairwise answer quality. Manual inspection helps explain the difference: hallucination rate counts every affected answer equally, while the pairwise judge also considers hallucination severity, relevance, clarity, and depth.

Operational metrics

Quality alone is not enough to choose the right system. We also compare cost per task, duration, and tool-call statistics across the four approaches.

Generation latency per task

Bar chart of average summed model-generation duration per task for four RAG systems
SystemGeneration duration
Hybrid44.6s
Graph41.9s
Agentic27.3s
Naive11.2s
Average summed model response duration per task.

We consider model-request duration only, excluding tool execution time because it depends heavily on the technology, infrastructure, and dataset size.

Hybrid RAG and agentic graph RAG take more than 40 seconds on average. Agentic vector RAG takes just over 27 seconds, while naive RAG is fastest at 11.2 seconds.

Cost per task

Bar chart of average generation cost per task for four RAG systems
SystemCost per task
Hybrid$0.177
Graph$0.148
Agentic$0.140
Naive$0.045
Average LLM inference costs per task.

The higher quality of hybrid RAG comes at a cost: average inference spend is $0.177 per task. Agentic graph and agentic vector RAG cost between $0.14 and $0.15, while naive RAG costs roughly one-quarter as much as hybrid RAG.

Tool calls per task

Bar chart of average tool calls per task for four RAG systems
SystemAverage tool calls
Hybrid9.5
Graph7.3
Agentic9.5
Naive0.0
Average tool calls per task. Naive RAG does not use tools.

Agentic graph RAG makes 7.3 tool calls per question, compared with roughly 9.5 for hybrid and agentic vector RAG. Naive RAG is not agentic and therefore makes no tool calls.

Conclusion

The right approach depends on the relative importance of answer quality, latency, and cost. Hybrid RAG is the strongest option when answer quality is the primary objective. Agentic graph RAG is the closest alternative, averaging $0.148 rather than $0.177 per task and 41.9 rather than 44.6 seconds. Naive RAG is best suited to latency- and cost-sensitive applications, averaging 11.2 seconds and $0.045 per task. Agentic vector RAG was faster than the graph and hybrid systems at 27.3 seconds, but had the highest hallucination rate at 30.4%.

Would you like to receive more content like this?

Subscribe to our email list

Miriam Kümmel
Miriam Kümmel
Co-Founder at Blue Guardrails
Mathis Lucka
Mathis Lucka
Co-Founder at Blue Guardrails

Create reliable AI agents

Monitor, evaluate, steer, and continuously optimize your AI agents with one reliability layer built for production.

Copyright © 2026 Blue Guardrails