← Back to Learning Hub

5.3 Advanced RAG

Advanced · 5 articles · MODULE 5: RAG SYSTEMS

Query Transformation: Fixing the Question Before You Retrieve

Tutorial · Advanced · 28 min

Users write questions in their vocabulary; documents are written in the author's. Retrieval that matches the raw question against the corpus fails on that gap alone.

Query TransformationRetrieval

By: Anacodic Team

Start Reading →

Reranking: The Second Pass That Decides What the Model Sees

Tutorial · Advanced · 23 min

Retrieval is a two-stage cascade: a cheap scorer sweeps the whole corpus and returns k candidates, then an expensive scorer reorders just those k into the final few.

RerankingRetrieval

By: Anacodic Team

Start Reading →

Multi-Index RAG: Merging Several Retrievers Into One Answer

Tutorial · Advanced · 27 min

Real systems retrieve from more than one place, and each returns overlapping documents with incomparable scores — so merging and deduplication decide the ranking.

Multi-IndexFusion

By: Anacodic Team

Start Reading →

Agentic RAG: Routing Retrieval to Specialists

Tutorial · Advanced · 27 min

A router decides, per query, which specialist retrievers to run — each with its own index, filters, and tools — and a supervisor merges what comes back.

Agentic RAGRouting

By: Anacodic Team

Start Reading →

Graph RAG: Walking the Link Graph When Retrieval Comes Back Thin

Tutorial · Advanced · 26 min

Documents cite and link to each other, and that graph is a retrieval signal independent of the embedding — it reaches documents your retriever cannot see.

Graph RAGRetrieval

By: Anacodic Team

Start Reading →