⚠️ Malware / Trojaner / VirenKein Trojaner: Behörden überwachen WhatsApp-Chats mit einem einfachen Trick - CHIP(05.09.2026 um 18:00 Uhr)
📰 IT Security NachrichtenDie Cyberangriffe der KW36/2026 im Überblick - Computer Weekly(05.09.2026 um 18:42 Uhr)
⚠️ Malware / Trojaner / VirenYou don't want this Sleepwalker backdoor on your Windows machine(24.08.2026 um 23:39 Uhr)
⚠️ Malware / Trojaner / VirenCrooks push Mac malware through fake OpenAI Codex ads(25.08.2026 um 11:15 Uhr)
🔧 AI Nachrichten OpenAI explains how its naughty AI agents attacked Hugging Face(27.08.2026 um 01:45 Uhr)
⚠️ Malware / Trojaner / VirenATF responds to 'major' cybersecurity incident after ransomware gang's claims(27.08.2026 um 17:25 Uhr)
🔧 AI Nachrichten Industry that built the problem offers to sell you the solution(28.08.2026 um 13:01 Uhr)
⚠️ Malware / Trojaner / VirenKein Trojaner: Behörden überwachen WhatsApp-Chats mit einem einfachen Trick - CHIP(05.09.2026 um 18:00 Uhr)
📰 IT Security NachrichtenDie Cyberangriffe der KW36/2026 im Überblick - Computer Weekly(05.09.2026 um 18:42 Uhr)
⚠️ Malware / Trojaner / VirenYou don't want this Sleepwalker backdoor on your Windows machine(24.08.2026 um 23:39 Uhr)
⚠️ Malware / Trojaner / VirenCrooks push Mac malware through fake OpenAI Codex ads(25.08.2026 um 11:15 Uhr)
🔧 AI Nachrichten OpenAI explains how its naughty AI agents attacked Hugging Face(27.08.2026 um 01:45 Uhr)
⚠️ Malware / Trojaner / VirenATF responds to 'major' cybersecurity incident after ransomware gang's claims(27.08.2026 um 17:25 Uhr)
🔧 AI Nachrichten Industry that built the problem offers to sell you the solution(28.08.2026 um 13:01 Uhr)

26 🕛 kürzlich 4 Min Lesezeit
0

Part 3: Types of RAG

↗ Quelle (dev.to)
🗣️ Stimme:
📑 Inhaltsübersicht

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.

Vollständiger Original-Bericht
Ausführliche Details, Code-Beispiele & Hersteller-Stellungnahme auf dev.to.
↗ Original-Artikel auf dev.to lesen
Wie bewertest du diesen Beitrag?
1 Klick Feedback
Teilen mit Netzwerk & Team:

Community-Analysen & Experten-Meinungen 0

Verfasse deine eigene Analyse, teile Workarounds oder diskutiere diesen Vorfall im Blog.
Noch keine Community-Analyse verfasst. Markiere einen Textabschnitt oder klicke oben auf Eigene Analyse verfassen“!
Community Pulse: Relevanz-Einschätzung
1 Klick Experten-Votum
🔴 Akute Relevanz 39%
🟡 In Evaluierung 20%
🟢 Keine Auswirkung 13%
Spannende Innovation 28%
Verwandte Story-Cluster & Quellen (Vektor-KI)
Port 8095 Engine
1 Quelle
Google Patches 6th Chrome Zero-Day of 2026
1 Quelle
VMware Workstation and Fusion Updates Patch Critical Vulnerability
1 Quelle
12-Year-Old PostgreSQL Vulnerability Enables Database, Server Takeover
Ähnliche Beiträge
🔍 Verwandte News

Auch interessante Nachrichten Part 3: Types of RAG

Thematisch verwandte Begriffe: Part, Types · 6 Treffer

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...

Laden...

Beiträge werden geladen ...

Laden...

Videos werden geladen ...