惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
博客园 - Franky
IT之家
IT之家
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
雷峰网
雷峰网
腾讯CDC
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
博客园_首页
G
Google Developers Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Part 3: Types of RAG
Bhargav Pate · 2026-05-11 · via DEV Community

Bhargav Patel

Now that we understand what RAG is and how the ingestion and retrieval pipeline works, the next natural question is:

Is there only one type of RAG?

The answer is no.

In real-world systems, RAG is not a single fixed architecture. It is a family of approaches, and each one is designed for different levels of accuracy, complexity, and performance requirements.

Let’s go through the most important types of RAG used in production systems today.


1. Naive RAG (Basic RAG)

This is the simplest form of RAG.

It follows exactly the same pipeline we already discussed:

  • documents are chunked
  • embeddings are created
  • stored in a vector database
  • top matching chunks are retrieved
  • sent to the LLM for generation

Flow:

Query → Embedding → Vector Search → Context → LLM → Answer

Where it is used:

  • simple chatbots
  • basic document Q&A systems
  • prototypes and demos

Limitation:

Although it works, it is not very intelligent.

Common issues include:

  • irrelevant chunks sometimes get retrieved
  • no ranking refinement
  • weak handling of complex queries

2. Hybrid RAG

Hybrid RAG improves retrieval by combining two search methods:

  • keyword search (BM25)
  • vector search (semantic search)

Why this matters:

Sometimes keyword matching performs better than semantic search.

For example, if a user searches:

“GPT-4 pricing”

Keyword search can directly match exact terms more effectively.

Flow:

Query → Keyword Search + Vector Search → Merge Results → Rerank → LLM

Where it is used:

  • enterprise search systems
  • SaaS knowledge bases
  • large documentation platforms

Benefit:

It is significantly more reliable than naive RAG because it balances both exact and semantic matching.


3. Reranking RAG (Quality-Focused RAG)

This approach adds an extra intelligence layer after retrieval.

Instead of directly sending retrieved chunks to the LLM, the system first re-evaluates them using a reranker model.

The reranker assigns relevance scores and reorders the results.

Flow:

Query → Retrieval → Reranker → Best Context → LLM

Why this matters:

Vector search is fast, but it is not always precise in ranking results.

Reranking improves:

  • relevance quality
  • context filtering
  • removal of noisy chunks

Where it is used:

  • legal AI systems
  • enterprise copilots
  • high-accuracy assistants

4. Multi-Query RAG

Sometimes a single user query is not enough to capture intent.

So instead of retrieving once, the system generates multiple variations of the same query.

Example:

User query:

“How does refund work?”

System expands it into:

  • refund policy conditions
  • return process steps
  • money-back rules

Flow:

Query → Query Expansion → Multiple Searches → Merge → LLM

Benefit:

  • better coverage of information
  • higher recall
  • fewer missed results

5. Graph RAG (Knowledge Graph-Based RAG)

Graph RAG treats information as connected entities instead of isolated chunks.

Instead of independent documents, it builds relationships between concepts.

Example relationships:

  • product → policy → exception → user cases

Everything is connected in a structured graph.

Flow:

Query → Graph Traversal → Connected Context → LLM

Where it is used:

  • enterprise knowledge systems
  • research assistants
  • complex domain reasoning

Benefit:

  • stronger logical reasoning
  • better relationship understanding
  • more structured answers

6. Agentic RAG (Tool-Using RAG)

This is one of the most advanced modern approaches.

Here, the LLM behaves like an autonomous agent, not just a response generator.

It can:

  • plan how to answer a question
  • decide what to search
  • refine queries
  • call external tools or APIs
  • perform multiple retrieval steps

Flow:

Query → Plan → Retrieve → Reflect → Retrieve Again → Answer

Key idea:

Instead of a single retrieval step, it performs iterative reasoning.

Where it is used:

  • AI copilots
  • coding assistants
  • research automation systems

7. Self-RAG (Self-Checking RAG)

Self-RAG adds a verification layer after generation.

After producing an answer, the system checks:

Is this answer actually supported by retrieved context?

If not, it corrects itself by retrieving again or refining the response.

Flow:

Retrieve → Generate → Verify → Fix → Final Answer

Benefit:

  • reduces hallucinations further
  • improves factual accuracy
  • adds self-correction ability

Comparison of RAG Types

Type Strength Complexity
Naive RAG Simple setup Low
Hybrid RAG Better retrieval Medium
Reranking RAG Higher accuracy Medium
Multi-Query RAG Better recall Medium
Graph RAG Strong reasoning High
Agentic RAG Autonomous workflows Very High
Self-RAG Self-correction High

Key Insight

As we move from Naive RAG to Agentic RAG:

We are not just improving retrieval — we are improving reasoning ability.

That is the real evolution of RAG systems.


Final Mental Model

To simplify everything:

  • Naive RAG → basic retrieval
  • Hybrid RAG → smarter search
  • Reranking RAG → better ordering
  • Multi-Query RAG → better coverage
  • Graph RAG → connected knowledge
  • Agentic RAG → decision-making system
  • Self-RAG → self-correcting system

Final Thoughts

RAG is not a single architecture.

It is a complete ecosystem of retrieval-based AI systems, evolving based on:

  • accuracy requirements
  • data complexity
  • cost constraints
  • reasoning needs

But despite all variations, the foundation remains the same:

Retrieve relevant knowledge → provide it to the model → generate grounded answers

That is still the core idea behind every RAG system in production today.