Retrieval-Augmented Generation
also referred to as: rag
34 statements across 25 episodes · 16 bullish · 10 bearish · 25 people on the record · first statement Oct 12, 2023 by Jerry Liu · across every show →
Everything said about Retrieval-Augmented Generation, oldest first
Oct 12, 2023 bearish
Liu: The final state for personalized AI memory will not be RAG
“I think a lot of people have thoughts about that, but, like, for what it's worth, I don't think the final state will be ragged. I think it will be some, like, fancy algorithm or architecture where you, like, bake it into, like, the architecture of the model it…”
Oct 12, 2023 neutral
Liu: RAG is fundamentally just an algorithmic prompt-stuffing hack
“RAG is basically just a hack, but it turns out it's a very good hack because what is RAG? RAG is you keep the model fixed, and you just figure out a good way to, like, stuff stuff into the prompt of the language model. Everything that we're doing nowadays in t…”
Oct 12, 2023 bullish
Liu: RAG will remain essential for managing LLM cost-performance trade-offs
“There's always going to be some curve regardless of like the performance of the best performing models of like cost versus performance. And so what RAG does is it does provide extra data points along that access because you kind of control the amount of contex…”
Oct 12, 2023 positive
Liu: Chain-of-thought query decomposition produces superior retrieval results
“Another example here is actually LLM based reasoning, like LLM based chain of thought reasoning. You can take a question, break it down into smaller components and use that to actually send to your retrieval system. And that gives you better results since kind…”
Oct 12, 2023 positive
Liu: Developers should build RAG from scratch before using framework abstractions
“Building, like, RAG from scratch. I mean, I think everybody should do it, I think. Like, I would check out the guide if you guys haven't already, and I think it's in our docs, but instead of just using you know, either the kind of, like the retriever query eng…”
Oct 20, 2023 negative
Howard: RAG is an inefficient hack compared to fine-tuning
“RAG is like such a inefficient hack, really, isn't it? It's like, You know, segment up my data in some somewhat arbitrary way, embed it, ask questions about that, you know, hope that my embedding, you know, model embeds questions in the same embedding space as…”
Oct 21, 2023 bearish
Nov 3, 2023 positive
Feb 8, 2024 positive
May 31, 2024 neutral
Jun 11, 2024 positive
Brightwave uses composable, context-aware prompting conditioned on retrieved context semantics
“You can have prompts that are composable and that have different sort of command units that like may or may not be present based on the semantics of the content that is being populated into the rag context window. And so that, that's something we make great us…”
Aug 17, 2024 positive
Oct 4, 2024 neutral
Pokras: OpenAI Assistants API requires too many initial API requests
“Some of the things that are good in the assistance API is hosted tools. People really like posted tools and especially RAG. And then some things that are, you know, less intuitive is just how many API requests you need to get going with the Assistant's API.”
Oct 19, 2024 neutral
Oct 19, 2024 negative
Hu: Long-context accuracy degrades; RAG remains necessary for entire large codebases
“My guess would be that, like, long context works, but it's sort of a lie as far as your accuracy, and that rag matters no matter what, because even in the longest context windows, you can't fit the whole code base.”
Oct 19, 2024 positive
Nov 29, 2024 neutral
Shreya Shankar: DocETL builds semantic unstructured layers, not point-lookup RAG systems
“This is very different from traditional rag or Q&A or document processing for a chatbot. Like, the kinds of queries that people are, people want to use .etl for can be expressed as etl style sweep and harvest, kind of, I want to look at my entire dataset. I wo…”
Dec 24, 2024 negative
Fu: Embedding model quality barely matters for final RAG performance
“We had this experience over and over again where you could have any, an embedding model of any quality, so you could have a really, really bad embedding model, or you could have a really, really good one by, and by any measure of good, and for the final RAG ap…”
Dec 25, 2024 negative
Feb 17, 2025 negative
Sutin: Bee replaced traditional RAG embeddings with massively parallel small models
“What we've learned is, like, doing the traditional, like, embedding and RAG is suboptimal. We kind of built our own using small models to do really massively parallel retrieval, which I think is going to be maybe more common in the future.”
Feb 17, 2025 bearish
Feb 18, 2025 neutral
Feb 18, 2025 positive
Sehgal: Keep recent research tasks in context, relegating older ones to RAG
“Just to add to that, I think like, just like a simple rule of thumb that we use is like, if it's the most recent set of research tasks where the user is likely to ask lots of follow-up questions, that should be in context. But like, as stuff gets 10 tasks ago,…”
Feb 18, 2025 negative
Sridhar: Vector dot-product RAG breaks down on multi-attribute queries
“The tricky thing for RAG, it really works well because a lot of these things are doing like cosine distance, like a dot product kind of a thing, and that kind of gets challenging when your query side has multiple different attributes. The dot product doesn't r…”
Mar 28, 2025 positive
Shah: Graph representations may outperform standard vector chunking in RAG
“The reality is something gets lost in the chunking process in the, okay, well, those tend to, you know, like you don't really get the whole picture, so to speak, and maybe not even the right set of dimensions on the kind of broader picture. And it makes intuit…”
Apr 19, 2025 positive
Bergum: Build RAG with BM25 first, hybrid search second, re-ranking third
“I think actually that a very strong baseline is the classical BM-Five like algorithm that's been around for 30 years, right? It's keyword matching, but it offers a very useful baseline for a lot of different search use cases because it gives you that baseline,…”
Apr 19, 2025 positive
May 21, 2025 positive
Alberti: Wiki pages are a better abstraction than pure RAG for codebase search
“If you just do like pure, like rack on like such a big base code files, it'll just be like pretty bad at a certain point, you know, on a single code base. Sure. I can see it, but Tens of thousands of code bases. It's tougher. But I think actually the wiki page…”
Jul 29, 2025
Sep 11, 2025 neutral
Martin: Reading agent memory at scale is just a multi-step RAG pipeline
“Memory retrieval at large scale is just retrieval, right? I kind of view them as... In the case of sophisticated memory retrieval, it is just like a, you know, complex rag system in the same way we talked about with like Varun and building windsurf. It's kind …”
Oct 24, 2025 positive
Webster: Meaningful AI red teaming will require internal tracing and observability
“I think especially where, where things are headed, like with more complex rags and agents and so forth, you're going to have to have some type of observability or like internal tracing in order to have, to do meaningful automated red teaming.”
Dec 30, 2025 positive
Dec 31, 2025 positive
Nina Lopatina: Agentic RAG and query reformulation outperform traditional RAG baselines
“Agentic RAG is just generally better than RAG. Even that initial incremental step of making that doing query reformulation, so when you receive that initial query, being able to break it down into sub-queries so that you can better match those queries to docum…”
Mar 20, 2026 negative
Singleton: Dreamer replaced Vector DB RAG for agent memory due to complexity
“Very early on, we were putting lots of facts into a vector database and doing embeddings and pulling them back out using, you know, reverse look of embeddings. Rag that actually worked, but turned out to be much more complexity than was actually required. So, …”