You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A new controlled scaling study ("BM25 Wins at Scale", arxiv 2607.26497) tested RAG paradigms across a 450-fold range of corpus sizes. At corpora beyond ~10 million tokens, BM25 lexical retrieval outperforms agentic file-system search by up to 20 accuracy points — while agentic search consumes 39× more query tokens and degrades as the search space grows. Dense retrieval stays efficient but lags in accuracy; graph-based RAG hits construction walls before reaching deployment scale.
⚙️ What It Means for Agentic Workflows
Don't replace retrieval with agents — sequence them. The study's own conclusion: "agentic reasoning works best after ranked discovery rather than in place of it." Use BM25 to shortlist candidates, then invoke your LLM agent only on the filtered set.
Token budget matters at scale. If your workflow searches large codebases or document stores, switching from open-ended agentic search to a BM25 pre-filter can slash inference costs dramatically without sacrificing (and likely improving) accuracy.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
🔬 The Finding
A new controlled scaling study ("BM25 Wins at Scale", arxiv 2607.26497) tested RAG paradigms across a 450-fold range of corpus sizes. At corpora beyond ~10 million tokens, BM25 lexical retrieval outperforms agentic file-system search by up to 20 accuracy points — while agentic search consumes 39× more query tokens and degrades as the search space grows. Dense retrieval stays efficient but lags in accuracy; graph-based RAG hits construction walls before reaching deployment scale.
⚙️ What It Means for Agentic Workflows
🔗 Source
BM25 Wins at Scale: A Scaling Study of RAG Paradigms — July 31, 2026
All reactions