Pack · 10 talks · 4h 16m to watch, 55 min to read

Search and retrieval

A fluent RAG answer can still be wrong because the right passage never reached the model. The retrieval engine comes first: inverted indexes, BM25, dense vectors and the ranking signals that decide what survives. One practical rule carries through the harder cases: inspect the bad queries before adding another layer. Filters, rerankers and query decomposition earn their place that way. Writer's graph work shows why repeated enterprise language can confuse vector similarity, while a FIFA corpus makes the case for text-to-SQL when the question asks for counts or comparisons across the whole collection. Agent search only helps once that retrieval layer works. Its tests catch web access that silently failed and require current evidence, so a bad score can suggest an actual repair.

3
David Karam, Pi Labs · 20:22 · AI Engineer World's Fair 2025
Layering Every Technique in RAG, One Query at a Time

Why here: Liu describes the available layers. Karam orders them by evidence, starting with the simplest system and reading its losses before adding BM25, embeddings, rerankers, domain signals or query fan-out. Fernandes then turns that method into a close-up of one naive RAG stack failing and being repaired.

4
Jonathan Fernandes · 18:52 · AI Engineer World's Fair 2025
The RAG Stack We Landed On After 37 Fails

Why here: Karam gives a decision process; Fernandes shows the debugging experience it produces. Changing embedding models does not fix bad context, while a cross-encoder reranker finally moves the right passage into place. Ma follows by widening that local repair into the economic and architectural choices of an enterprise retrieval stack.

5
Tengyu Ma, MongoDB · 18:48 · AI Engineer World's Fair 2025
RAG in 2025: State of the Art and the Road Forward

Why here: Fernandes improves one stack through traces and evaluation. Ma asks why an enterprise should retrieve at all, then covers access control, vector compression, hybrid search and multimodal documents. His warning that performance varies sharply by corpus sets up Julien's case, where dense repetitive documents make vectors unreliable.

6
Sam Julien, Writer · 15:47 · AI Engineer World's Fair 2025
When Vectors Break Down: Graph-Based RAG for Dense Enterprise Knowledge

Why here: Ma presents graph retrieval as one tool among several. Julien gives the failure that justifies it: enterprise documents reuse the same language while the answer depends on relationships spread across pages. Belfer and Granot then push the same challenge further, asking when retrieval should give way to a structured query.

7
Yuval Belfer & Niv Granot, A21 Labs · 10:58 · AI Engineer World's Fair 2025
RAG Evaluation Is Broken! Here's Why (And How to Fix It)

Why here: Julien preserves relationships with graph-derived retrieval. Belfer and Granot show a different boundary: top-k chunks are a poor tool for counts, maxima and corpus-wide comparisons. Their text-to-SQL alternative makes the representation match the question. Lichtenberg follows by returning to unstructured evidence and teaching an agent to choose among retrieval tools.

8
Hanna Lichtenberg, Mixedbread AI · 14:28 · AI Engineer World's Fair 2026
How We Taught Agents to Use Good Retrieval

Why here: Belfer and Granot choose the interface that fits the data. Lichtenberg lets an agent make that choice among overview search, semantic search, metadata filters and grep, then trains it to describe evidence needs instead of guessing keywords. Levi follows with a prior condition this work assumes: the agent must reach the source at all.

9
Rafael Levi, Bright Data · 15:49 · AI Engineer Europe 2026
Your Agent's Biggest Lie: "I Searched the Web"

Why here: Lichtenberg improves how an agent searches a corpus. Levi shows why a well-formed query can still produce fiction on the public web: the request hits a CAPTCHA, an empty page or stale training data, and the agent answers anyway. Neagu, Emery and Sher close the pack by making access, evidence and answer quality measurable.

10
Julia Neagu, Deanna Emery & Mara Sher, Quotient AI · 20:33 · AI Engineer World's Fair 2025
Evaluating AI Search: A Practical Framework for Augmented AI Systems

Why end here: Levi exposes the invisible failure of web retrieval. Neagu, Emery and Sher build the operating discipline around it: dynamic test sets for changing facts, separate measures for completeness, document relevance and hallucination, and results that point toward a repair. It ends the pack where production search must end, with evidence strong enough to change the system.

After this pack: Security for agents →