paper-with-me

홈 › Papers

Reducing Latency of LLM Search Agent via Speculation-based Algorithm-System Co-Design

2025-11-25 · Zixiao Huang, Wen Zeng, Tianyu Fu, Tengxuan Liu, Yizhou Sun, Ke Hong, Xinhao Yang, Chengchun Liu, Yan Li, Quanlu Zhang, Guohao Dai, Zhenhua Zhu, Yu Wang arxiv

LLM-based search agents achieve strong performance but suffer from severe latency, as each step requires serialized LLM reasoning followed by action of tool execution. We revisit this bottleneck through the lens of speculation. While traditional predict-verify speculation paradigm can break serial execution, its benefit remains limited, as it retains the full original workload and adds extra inference overhead. We observe that early agent steps often involve simple evidence-gathering, where correct actions can often be predicted without full reasoning. Building on these observations, we present SPAgent, an algorithm-system co-design framework that expands the role of speculation in search agents to reduce latency. Algorithmically, SPAgent introduces a two-phase adaptive speculation mechanism that selectively omits verification when safe. System-wise, a two-level scheduler regulates speculative requests based on engine load to ensure speculation remains beneficial. We implement SPAgent in real-world systems. Across extensive experimental settings, SPAgent achieves up to $1.65\times$ end-to-end speedup while maintaining same or even achieving higher accuracy, enabling practical deployment of multi-step search agents.

📄 PDF Abstract BibTeX arXiv:2511.20048

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

SpecHop: Continuous Speculation for Accelerating Multi-Hop Retrieval Agents

2026-05-21 · Mehrdad Saberi, Keivan Rezaei, Soheil Feizi arxiv

Large language models increasingly use external tools such as web search and document retrieval to solve information-intensive tasks. However, multi-hop tool use in complex tasks introduces substantial latency, since the…

DualSpec: Accelerating Deep Research Agents via Dual-Process Action Speculation

2026-03-08 · Shuzhang Zhong, Baotong Lu, Qi Chen, Chuanjie Liu 외 arxiv

Large language model-based deep research agents have been increasingly popular for addressing long-horizon information-seeking tasks, but they often incur high end-to-end latency due to extensive reasoning and frequent t…

AOSpec: Action and Observation Co-Speculation for Low-Latency Agent Serving

2026-08-01 · Hao Mark Chen, Jinnan Guo, Wayne Luk, Hongxiang Fan arxiv

Large language model agents increasingly act through stateful tools, yet model generation and environment execution remain serialized at every step. As decoding accelerates, tool execution becomes a growing bottleneck. E…

Dynamic Speculation Lookahead Accelerates Speculative Decoding of Large Language Models

2024-05-07 · Jonathan Mamou, Oren Pereg, Daniel Korat, Moshe Berchansky 외

Speculative decoding is commonly used for reducing the inference latency of large language models. Its effectiveness depends highly on the speculation lookahead (SL)-the number of tokens generated by the draft model at e…

Optimizing Speculative Decoding for Serving Large Language Models Using Goodput

2024-06-20 · Xiaoxuan Liu, Cade Daniel, Langxiang Hu, Woosuk Kwon 외

Reducing the inference latency of large language models (LLMs) is crucial, and speculative decoding (SD) stands out as one of the most effective techniques. Rather than letting the LLM generate all tokens directly, specu…