@jerryjliu0: 3 years ago I gave a talk at the first @aiDotEngineer conference on "Advanced RAG" techniques in order to work around t…
Summary
Jerry Liu reflects on the evolution of RAG techniques over three years, noting a shift from naive RAG to agent-based abstractions and from code-defined to goal-defined agents.
View Cached Full Text
Cached at: 07/03/26, 12:29 AM
3 years ago I gave a talk at the first @aiDotEngineer conference on “Advanced RAG” techniques in order to work around the limitations of naive RAG.
It’s insane how much the world has changed since then, and the world has evolved into standardized, higher-level abstractions around agent harnesses and context.
Some general patterns:
-
Retrieval complexity can be encoded at the agent layer. This means that you can give relatively simple but performant search tools to an agent (e.g. really fast bm25, vector search), and let the agent reasoning enter the right queries to find the right results.
-
To some extent this is still evolving, but I do think we will increasingly care less about “hacking” the context window and more about deciding what business context is relevant in the first place.
-
The way we build agents has fundamentally changed from defining code, to defining runbooks, to defining goals.
Big congrats to @swyx and the entire AI Engineer team for continuing to put out awesome conferences every year.
Similar Articles
@jerryjliu0: A full tour through RAG, document context, and AI agents - from 2023 to 2026 @hexapode gave a comprehensive 90-min work…
Comprehensive workshop slides tracing the evolution of RAG, document context, and AI agents from 2023 to 2026, covering pain points, reranking, agent loops, and document parsing challenges.
Some notes and lessons on Agents, RAG and memory
The author shares notes and lessons learned from building AI agents at scale, focusing on RAG and memory management to help others.
@jerryjliu0: From playing around with /goal It feels like there's less and less of a need to build any type of workflow manually (wh…
Jerry Liu observes that AI development is shifting from manually building workflows to specifying goals, and from prompt engineering to goal and eval engineering.
@helloiamleonie: Took some inspiration from @vboykis and converted my first ever talk into a blog post. I talk about the role of agentic…
The article by Leonie Monigatti discusses the role of agentic search in context engineering for AI agents, tracing the evolution from fixed RAG pipelines to agentic RAG and context curation. It provides intuition on the strengths and weaknesses of various search tools used in agentic systems.
@SuJinyan6: https://x.com/SuJinyan6/status/2073955240349770069
This blog post by SuJinyan6 examines the evolution of AI agents from simple LLM+tool use to context engineering and long-running harnesses, citing Anthropic's recent work and discussing how agent capability is now a system-level property involving multiple components.