Topic

RAG & Knowledge Systems

Personal RAG, production retrieval, chunking, permissions, ingestion, and source boundaries.

22 stories (10 articles · 12 videos)

Start here

A few good first pieces before you browse the full feed.

More in this topic

7 minutes
Video

Unlock Better RAG & AI Agents with Docling

IBM Technology. Explains the ingestion side of RAG and agents: preparing PDFs and other files so document structure, tables and layout survive into downstream retrieval. That supports the article's warning that RAG quality and safety begin before embedding, especially when parsing complex business documents.
Advanced
20 minutes
Video

Permissions & Access Control for RAG - a Deep Dive Tutorial

Paragon. Walks through the production RAG permission problem and compares tool-calling, namespaces, ACL tables and relationship-based permissions. That directly supports the article's core rule: retrieval must only return sources the current user is allowed to see, and source-system permissions cannot be treated as an afterthought.
Advanced
11 min read
Article

Secure document ingestion for RAG: PDFs, OCR, metadata, and retention

RAG quality starts before retrieval. A secure ingestion guide for PDFs, OCR, metadata, permissions, source freshness, deletion, malware risk, and operational ownership.

Design a secure document-ingestion pipeline for RAG with permission metadata, OCR quality checks, source freshness, retention rules, deletion behavior, and ingestion tests.

Advanced
12 min read
Article

Context engineering: managing 1M-token windows without context rot

1M-token context windows exist, but quality degrades long before that limit. Context engineering is the discipline of using context windows effectively — what to include, what to summarize, what to retrieve fresh, and the patterns that keep quality high as context grows.

Evaluate the implementation pattern, failure modes, and guardrails before building.

Advanced
12 min read
Article

Choosing between prompting, RAG, and fine-tuning (and when to combine)

Prompting, RAG, and fine-tuning are the three big levers for adapting LLMs to your problem. Each is right for some problems and wrong for others. A framework for choosing, the realistic costs of each, and the production patterns where combining them shines.

Use the article as decision context for adoption, risk, governance, or investment choices.

Advanced
12 min read
Article

RAG beyond chunks: graph RAG, agentic RAG, long-context RAG

Classic chunk-based RAG has limits. Graph RAG, agentic RAG, and long-context RAG each break those limits in different ways. When each is the right tool, how they actually work, and the production trade-offs that matter.

Evaluate the implementation pattern, failure modes, and guardrails before building.

Advanced
11 min read
Article

Chunking, reranking, and hybrid search: make RAG actually work

Most RAG implementations work poorly because they get three things wrong. A practical guide to chunking documents, reranking results, and combining keyword with semantic search — without becoming a search engineer.

Evaluate the implementation pattern, failure modes, and guardrails before building.

Intermediate
11 min read
Article

The AI customer support agent that resolves 70% of tickets

A realistic design for an AI customer support agent that resolves the common cases, escalates the hard ones, and doesn't make the kind of mistake that ends up on Hacker News. The architecture, the prompts, the guardrails.

Evaluate the implementation pattern, failure modes, and guardrails before building.

Intermediate
11 min read
Article

Build your first AI agent in n8n: a lead-triage workflow end-to-end

A complete walk-through of building a real AI agent in n8n — one that triages incoming leads, enriches them, scores them, and routes them. Every node, every prompt, every gotcha.

Design a lead-triage agent with explicit tools, schemas, routing rules, logging, and human review.

Intermediate
9 minutes
Video

RAG vs. Fine Tuning

IBM Technology. Tighter focus on the two techniques teams most often confuse. Goes deeper on data freshness, source attribution, and the inference-time speed argument for fine-tuning. Worth watching if you are specifically trying to argue against an unnecessary fine-tune project.
Advanced
13 minutes
Video

RAG vs Fine-Tuning vs Prompt Engineering: Optimizing AI Models

IBM Technology. A clear whiteboard pass through all three techniques with their respective costs — retrieval latency, training compute and catastrophic forgetting, the limits of prompt-only solutions — and the combinations that actually make sense in production. The closing example of a legal AI system using all three is almost exactly the article's "when to combine" argument.
Advanced
16 minutes
Video

Graph RAG: Improving RAG with Knowledge Graphs

Prompt Engineering. A focused walkthrough of Microsoft's GraphRAG — entity extraction, community summaries, query-focused summarization — set up on a local machine with cost notes. Watch it for the graph-RAG section of the article specifically; the cost discussion is the part most write-ups skip.
Advanced
39 minutes
Video

Introducing RAG 2.0: Agentic RAG + Knowledge Graphs (FREE Template)

Cole Medin. A working agentic-RAG-plus-knowledge-graph build, with the agent deciding when to do vector search, when to hit Neo4j, and when to do both. It's the cleanest demonstration on YouTube of the "agent as the retrieval planner" pattern the article describes, in code you can actually pull down and run.
Advanced
17 minutes
Video

RAG Agents in Prod: 10 Lessons We Learned — Douwe Kiela, creator of RAG

AI Engineer. Douwe Kiela led the original RAG paper at FAIR and now ships RAG into regulated enterprises. The talk is mostly about what stops working at scale — chunking strategies that don't survive 100k documents, "accuracy is table stakes, inaccuracy is the real problem," and why attribution and observability matter more than the embedding model. Good calibration before re-reading the article's eval and monitoring sections.
Advanced
19 minutes
Video

Building Production-Ready RAG Applications: Jerry Liu

AI Engineer. LlamaIndex's CEO walking the gap between "naive RAG demo" and a real pipeline — small-to-big retrieval, sub-question routing, hybrid search, evaluation. The shape of his slides maps almost directly onto the article's pipeline sections; watch first, then re-read the article with his diagrams in your head.
Advanced
69 minutes
Video

The 5 Levels Of Text Splitting For Retrieval

Greg Kamradt. The article spends a lot of words on chunking; this is the longest, most patient explanation of what each chunking strategy is actually doing — from character-recursive through document-aware to semantic and agentic splitting. Pair it with Greg's free ChunkViz tool to build intuition before you start tuning.
Intermediate
24 minutes
Video

"I want Llama3 to perform 10x with my private knowledge" - Local Agentic RAG w/ llama3

AI Jason. Covers the exact stack the article argues for — query translation, hybrid retrieval, reranking, and a corrective-RAG loop — in one runnable build. Useful as a working mental model for what the chunk → rerank → answer pipeline looks like when it's actually doing its job.
Intermediate
11 minutes
Video

How To Use NotebookLM For Beginners In 2024 (NotebookLM Tutorial)

TheAIGRID. A faster, feature-first tour: uploading mixed sources (PDFs, YouTube transcripts, blog posts), generating a briefing doc, focusing the chat on a single source, and the audio-overview podcast. Good if you want a quick map of the surface area before committing time to a longer walkthrough.
Intermediate
26 minutes
Video

How to Use NotebookLM (Google's AI "Tool for Understanding")

Tiago Forte. Tiago is the *Building a Second Brain* author and treats NotebookLM as exactly what the article describes — a personal RAG over your own notes, PDFs and clippings. He shows the citation-grounded chat, the limits of the tool, and how it fits next to a Readwise/Obsidian workflow, which is the natural endpoint for most readers of the article.
Intermediate