Rethinking Agentic Search with Pi-Serini: Is Lexical Retrieval Sufficient?
Summary
This paper introduces Pi-Serini, a BM25-based agentic search system that demonstrates lexical retrieval can suffice for deep search when agents refine queries, achieving high accuracy and reducing costs compared to default settings.
View Cached Full Text
Cached at: 05/13/26, 12:20 AM
Paper page - Rethinking Agentic Search with Pi-Serini: Is Lexical Retrieval Sufficient?
Source: https://huggingface.co/papers/2605.10848 Does a lexical retriever suffice for agentic search when agents can keep refining their queries?
As LLMs become more capable in agentic loops, agents can continuously refine their behavior, including tool use and reasoning, based on feedback from the environment. Motivated by this, I couldn’t help but ask the question above.
To answer it, we introducePi-Serini(= PI + Anserini), a minimal BM25-based search agent equipped withsearch,browse, andreadtools. This interface allows agents to cache retrieved rankings locally and selectively decide which content should enter their context window, much like how people use Google Search. This design enables agents to retrieve more deeply.
Results on BrowseComp-Plus: Pi-Serini with GPT-5.5 achieves 83.1% answer accuracy and 94.7% surfaced evidence recall.
Controlled ablations show that: Well-configured BM25improves answer accuracy by 18.0% and surfaced evidence recall by 11.1% over the default BM25 setting. Increasing retrieval depthimproves surfaced evidence recall by 25.3% over shallow retrieval.
Overall, our answer is:Yes, a lexical retriever can suffice for agentic search when it is well configured and the search agent is equipped with a tool interface that enables deeper retrieval.
Notably, if you are worried about the high cost of deep research, Pi-Serini may help: it reduces evaluation cost by 3.3×–10×.
Paper:https://arxiv.org/abs/2605.10848 Code:https://github.com/justram/pi-serini Project site:https://ricky42613.github.io/piserini
Similar Articles
Beyond Semantic Similarity: Rethinking Retrieval for Agentic Search via Direct Corpus Interaction
The paper introduces Direct Corpus Interaction (DCI), a novel approach allowing AI agents to query raw text directly using standard terminal tools instead of traditional embedding-based retrieval. By bypassing fixed similarity interfaces and offline indexing, DCI significantly outperforms conventional sparse, dense, and reranking baselines across multiple IR and agentic search benchmarks.
Rethinking Reasoning-Intensive Retrieval: Evaluating and Advancing Retrievers in Agentic Search Systems
The paper introduces BRIGHT-Pro, a new benchmark for reasoning-intensive retrieval, and RTriever-Synth, a synthetic corpus used to fine-tune RTriever-4B for improved performance in agentic search systems.
@jerryjliu0: Agentic search has moved from fixed RAG pipelines into flexible agent harnesses with access to a set of search tools: k…
LlamaIndex introduces agentic retrieval with LlamaParse Index, combining semantic search and grep for flexible agent harnesses. A webinar on June 30th will demonstrate these tools.
@jerryjliu0: There’s an open question on whether grep is all you need for agentic search. This recent paper by @PwCUS (Sen et al.) s…
Recent paper investigates whether grep outperforms vector search for agentic retrieval, finding grep yields higher accuracy in conversational memory tests, but limitations around enterprise document corpora are noted.
Agentic search models (5 minute read)
Agentic search models are LLMs trained specifically for orchestrating search tasks, offering smaller, faster, and domain-specific alternatives to general models like GPT-5. They unbundle the traditional monolithic search stack by allowing an intelligent model to manage the entire retrieval process.