Skip to content
Concept-Lab
← Back to AI Engineering

RAG Systems

Retrieval foundations, chunking strategies, hybrid search, reranking, and practical RAG workflows.

0 / 17 completed0%
17 remainingShowing 17 of 17 nodes
1

Introduction to the Complete RAG Course

Course goals, why RAG matters for AI engineering, and what you will build.

Interactive
2

What is RAG, Tokens, Embeddings & Vector Databases

Context windows, chunking, embedding models, and the injection vs retrieval pipeline.

Lab
3

Coding the Injection Pipeline

Chunk → embed → store in a vector DB. Implementing from scratch.

Interactive
4

Coding the Retrieval Pipeline

Query → embed → similarity search → top-k chunks → LLM prompt → answer.

Interactive
5

Cosine Similarity Explained

How vector similarity is measured — the angle between embeddings explained.

Interactive
6

Answer Generation with LLM

From retrieved chunks and user question to a grounded, accurate final answer.

Interactive
7

History-Aware Conversational RAG

Multi-turn context and query reformation — making RAG work in chatbots.

Lab
8

Chunking Strategies Overview

Why chunking is the most impactful RAG decision — fixed vs semantic vs agentic.

Lab
9

Character & Recursive Text Splitter

The simplest chunking methods — when to use each and their trade-offs.

Interactive
10

Semantic Chunking

Meaning-preserving chunks using embedding similarity between adjacent sentences.

Interactive
11

Agentic Chunking

LLM-driven chunking with dynamic metadata — the highest-quality approach.

Lab
12

Multi-Modal RAG with Images and Documents

Embedding and retrieving images alongside text using unified vector spaces.

Interactive
13

Advanced Document Retrieval Techniques

Three retrieval methods: similarity, MMR, and score threshold — when to use each.

Interactive
14

Multi-Query RAG for Better Search Results

One user query → multiple LLM-generated reformulations → merged and reranked.

Interactive
15

Reciprocal Rank Fusion for Enhanced RAG Performance

Fusing multiple ranked retrieval lists into one robust ranking.

Interactive
16

Hybrid Search combining Vector and Keyword Search

Combining dense semantic and sparse lexical retrieval in one pipeline.

Interactive
17

RAG Reranking and Next Steps!

Final precision layer and production next-step roadmap.

Interactive