... for this specific use case (financial documents). These corpora have a high degree of semantic ambiguity among other tricky and difficult to alleviate issues. Other types of text are far more amenable to RAG and some are large enough that RAG will probably be the best approach for a good while. For example: maintenance manuals and regulation compendiums.
The RAG Obituary: Killed by agents, buried by context windows
31–40 of 185 posts
Re: The RAG Obituary: Killed by agents, buried by context windows
#32Re: The RAG Obituary: Killed by agents, buried by context windows
#33grep was invented at a time when computers had very small amounts of memory, so small that you might not even be able to load a full text file. So you had tools that would edit one line at a time, or search through a text file one line at a time. LLMs have a similar issue with their context windows. Go back to GPT-2 and you wouldn't have been able to load a text file into its memory. Slowly the memory is increasing,…
Re: The RAG Obituary: Killed by agents, buried by context windows
#34I'm always amazed at claude codes ability to build context by just putting grep in a for loop. It's pretty much the same process I would use in an unfamiliar code base. Just ctrl+f the file system till I find the right starting point.
It's mind blowing. It's so simple, elegant and... effective! Grep+glob and a lot of iterations is all we need.
Re: The RAG Obituary: Killed by agents, buried by context windows
#35Earlier quoted context omitted.
I don’t mind articles that have a hint of “an AI helped write this” as long as the content is actually informationally dense and well explained. But this article is an obvious ad, has almost no interesting information or summaries or insights, and has the… weirdly chipper? tone that AI loves to glaze readers with.
How is this an ad? It's a couple thousand words about how they built something complicated that was then obsoleted.
having a company name pitched at you within the first two sentences is a pretty good give away.
Re: The RAG Obituary: Killed by agents, buried by context windows
#36Weird to see the use case referenced specifically code search when that's a very targeted one rather than what general purpose agents (or RAG) use cases might target.
The main use case I referenced is SEC filings search, which is quite different from code. Filings are much longer, less structured, and more complex, with tables and footnotes.
Re: The RAG Obituary: Killed by agents, buried by context windows
#37I don't find this surprising. We are constantly finding workarounds for technical limitations, then ditch them when the limitation no longer exists. We will probably be saying the same thing for LLMs in a few years (when a new machine learning related TLA becomes the hype).
Re: The RAG Obituary: Killed by agents, buried by context windows
#38Earlier quoted context omitted.
Those guidelines that you reference talk almost exclusively about annoyances on the webpage itself, not the content of the article. I think it's fair to point out that many articles today are essentially a little bit of a human wrapper around a core of ChatGPT content. Whether or not this was AI-generated, the tells of AI-written text are all throughout it. There are some people who have learned to write like the AI…
Do you agree that bickering over AI-generated vs. not AI-generated makes for dull discussion? Sliding sewing needles deep into my fingernail bed sounds more appealing than nagging over such minutiae.
Re: The RAG Obituary: Killed by agents, buried by context windows
#39Earlier quoted context omitted.
The main use case I referenced is SEC filings search, which is quite different from code. Filings are much longer, less structured, and more complex, with tables and footnotes.
I’m sure that was your intent but why did you get bogged down talking about code?
Re: The RAG Obituary: Killed by agents, buried by context windows
#40So if one were building say a memory system for an AI chat bot, how would you save all the data related to a user? Mother's name, favorite meals, allergies? If not a Vector database like pinecone, then what? Just a big .txt file per user?