9 free guides · No signup required

RAG 101

A practical guide series on Retrieval-Augmented Generation - how to give an LLM your own documents to answer from, instead of hoping it already knows. Tool-agnostic: the same concepts apply whether you build in LangChain, n8n, or straight API calls.

Get Started → Core Concepts → Go Deeper · ~57 minutes total
Query Retriever vector store Top-k chunks LLM + context Answer

RAG in one picture: retrieve the relevant chunks first, then hand them to the LLM alongside the question.

GET STARTED

Start Here

New to RAG, or you've heard the term but couldn't explain it on the spot? These two guides get you oriented.

What Is RAG? (Retrieval-Augmented Generation, Explained)

The plain-English version: what problem RAG solves, why "just fine-tune it" usually isn't the answer, and where RAG actually falls short.

Get Started 6 min read

The RAG Pipeline: Load, Split, Embed, Store, Retrieve, Generate

The six stages every RAG system is built from, and where most of the actual engineering work concentrates.

Get Started 7 min read
CORE CONCEPTS

The Decisions That Actually Matter

Two decisions quietly determine whether your RAG system is good or mediocre - how you chunk, and where you store the result.

Chunking Strategies That Actually Matter

Fixed-size, recursive, and semantic chunking compared - and why chunk size is the single decision most likely to make or break retrieval quality.

Core Concepts 6 min read

Vector Databases, Compared

Pinecone, Chroma, Weaviate, pgvector, and when a plain vector index is genuinely all you need.

Core Concepts 7 min read

Want more hands-on AI builds like this?

APA Mastery runs live, practical sessions on working with modern AI tools - not just theory.

See What's On →
GO DEEPER

Know If It's Actually Working

The guide that separates "I built a RAG demo" from "I trust this in production."

Evaluating RAG Systems

Faithfulness, relevance, and recall - the three questions that tell you whether a change to chunking or retrieval actually helped.

Go Deeper 7 min read

RAG vs. Fine-Tuning vs. Long Context

A practical decision guide: when retrieval beats fine-tuning, when a bigger context window makes RAG unnecessary, and when you need more than one.

Go Deeper 6 min read

Hybrid Search and Reranking

Combining keyword and vector search, and adding a reranking step - the two changes most likely to fix mediocre retrieval quality.

Go Deeper 7 min read

Agentic RAG: Giving Retrieval Its Own Reasoning Loop

Query rewriting, multi-hop retrieval, and self-correction - how agentic RAG replaces a single fixed pipeline pass with a loop.

Go Deeper 7 min read

GraphRAG and Structured Retrieval

Using a knowledge graph instead of, or alongside, a vector index - for the relationship-heavy questions vector similarity struggles with.

Go Deeper 7 min read