EDBT 2026 Demo / reviewers in the wild / expert
Xiaoxi Li 0005
dblp:135/5865-5
· DBLP profile ↗
8ranked-venue papers in the field
3as first author
8since 2021 · last 2026
0009-0003-0708-418XORCID · conflict
Domains — venue-derived; a paper can count in several
Information Retrieval & Web Search · 8 (3 first)
| Year | Publication | Venue | Position |
|---|---|---|---|
| 2026 | Tool-Star: Empowering Multi-Tool Collaborative Web Agent via Reinforcement Learning
Guanting Dong 0001, Yifei Chen 0001, Xiaoxi Li 0005, Jiajie Jin, Hongjin Qian, Yutao Zhu 0001, Hangyu Mao, Guorui Zhou, Zhicheng Dou, Ji-Rong Wen |
SIGIR | 3 |
| 2026 | HiRA: Decoupling Planning and Execution with Hierarchical Reasoning in Deep SearchabstractComplex information needs in real-world search scenarios demand deep reasoning and knowledge synthesis across diverse sources, which traditional retrieval-augmented generation (RAG) pipelines struggle to address effectively. Current reasoning-based approaches face a key architectural challenge: they employ a single model to handle both high-level planning and detailed execution, resulting in inefficient reasoning and limited scalability. In this paper, we introduce HiRA, a hierarchical framework that separates strategic planning from specialized execution. Our approach decomposes complex search tasks into multiple subtasks, assigns each subtask to a domain-specific agent equipped with external tools and reasoning capabilities, and coordinates the results through a structured integration mechanism. This separation prevents execution details from disrupting high-level reasoning while enabling the system to leverage specialized expertise for different types of information processing. Experiments on four complex, cross-modal deep search benchmarks show that HiRA significantly outperforms state-of-the-art RAG and agent-based systems, highlighting the effectiveness of decoupled planning and execution for multi-step information seeking tasks. The code is available at https://github.com/RUC-NLPIR/HiRA. Jiajie Jin, Xiaoxi Li 0005, Yuyao Zhang 0003, Guanting Dong 0001, Zhao Yang 0006, Yutao Zhu 0001, Zhicheng Dou |
SIGIR | 2 |
| 2026 | TimelineReasoner: Advancing Timeline Summarization with Large Reasoning Models
Liancheng Zhang, Xiaoxi Li 0005, Zhicheng Dou |
SIGIR | 2 |
| 2026 | Toward Generalized Web Agent Training: A Deep Dive into Entropy-Balanced Reinforcement Learning
Guanting Dong 0001, Licheng Bao, Zhongyuan Wang 0006, Kangzhi Zhao, Xiaoxi Li 0005, Jiajie Jin, Hangyu Mao, Kun Gai, Guorui Zhou, Yutao Zhu 0001, Ji-Rong Wen, Zhicheng Dou |
WWW | 5 |
| 2026 | DeepAgent: A General Reasoning Agent with Scalable Toolsets
Xiaoxi Li 0005, Wenxiang Jiao, Jiarui Jin, Guanting Dong 0001, Jiajie Jin, Hao Wang 0049, Yutao Zhu 0001, Ji-Rong Wen, Zhicheng Dou |
WWW | 1 |
| 2025 | From Matching to Generation: A Survey on Generative Information RetrievalabstractInformation Retrieval (IR) systems are crucial tools for users to access information, which have long been dominated by traditional methods relying on similarity matching. With the advancement of pre-trained language models, Generative Information Retrieval (GenIR) emerges as a novel paradigm, attracting increasing attention. Based on the form of information provided to users, current research in GenIR can be categorized into two aspects: (1) Generative Retrieval ( GR ) leverages the generative model’s parameters for memorizing documents, enabling retrieval by directly generating relevant document identifiers without explicit indexing. (2) Reliable Response Generation employs language models to directly generate information users seek, breaking the limitations of traditional IR in terms of document granularity and relevance matching while offering flexibility, efficiency, and creativity to meet practical needs. This article aims to systematically review the latest research progress in GenIR. We will summarize the advancements in GR regarding model training and structure, document identifier, incremental learning, and so on, as well as progress in reliable response generation in aspects of internal knowledge memorization, external knowledge augmentation, and so on. We also review the evaluation, challenges, and future developments in GenIR systems. This review aims to offer a comprehensive reference for researchers, encouraging further development in the GenIR field (Github Repository: https://github.com/RUC-NLPIR/GenIR-Survey ). Xiaoxi Li 0005, Jiajie Jin, Yujia Zhou 0002, Yuyao Zhang 0003, Peitian Zhang, Yutao Zhu 0001, Zhicheng Dou |
ACM Trans. Inf. Syst. | 1 |
| 2025 | A Survey of Conversational SearchabstractAs a cornerstone of modern information access, search engines have become indispensable in everyday life. With the rapid advancements in AI and natural language processing (NLP) technologies, particularly large language models (LLMs), search engines have evolved to support more intuitive and intelligent interactions between users and systems. Conversational search, an emerging paradigm for next-generation search engines, leverages natural language dialogue to facilitate complex and precise information retrieval, thus attracting significant attention. Unlike traditional keyword-based search engines, conversational search systems enhance user experience by supporting intricate queries, maintaining context over multi-turn interactions, and providing robust information integration and processing capabilities. Key components such as query reformulation, search clarification, conversational retrieval, and response generation work in unison to enable these sophisticated interactions. In this survey, we explore the recent advancements and potential future directions in conversational search, examining the critical modules that constitute a conversational search system. We highlight the integration of LLMs in enhancing these systems and discuss the challenges and opportunities that lie ahead in this dynamic field. Additionally, we provide insights into real-world applications and robust evaluations of current conversational search systems, aiming to guide future research and development in conversational search. Fengran Mo, Kelong Mao, Ziliang Zhao 0001, Hongjin Qian, Haonan Chen 0005, Yiruo Cheng, Xiaoxi Li 0005, Yutao Zhu 0001, Zhicheng Dou, Jian-Yun Nie |
ACM Trans. Inf. Syst. | 7 |
| 2024 | CorpusLM: Towards a Unified Language Model on Corpus for Knowledge-Intensive TasksabstractLarge language models (LLMs) have gained significant attention in various fields but prone to hallucination, especially in knowledge-intensive (KI) tasks. To address this, retrieval-augmented generation (RAG) has emerged as a popular solution to enhance factual accuracy. However, traditional retrieval modules often rely on large document index and disconnect with generative tasks. With the advent of generative retrieval (GR), language models can retrieve by directly generating document identifiers (DocIDs), offering superior performance in retrieval tasks. However, the potential relationship between GR and downstream tasks remains unexplored. In this paper, we propose CorpusLM, a unified language model that leverages external corpus to tackle various knowledge-intensive tasks by integrating generative retrieval, closed-book generation, and RAG through a unified greedy decoding process. We design the following mechanisms to facilitate effective retrieval and generation, and improve the end-to-end effectiveness of KI tasks: (1) We develop a ranking-oriented DocID list generation strategy, which refines GR by directly learning from a DocID ranking list, to improve retrieval quality. (2) We design a continuous DocIDs-References-Answer generation strategy, which facilitates effective and efficient RAG. (3) We employ well-designed unsupervised DocID understanding tasks, to comprehend DocID semantics and their relevance to downstream tasks. We evaluate our approach on the widely used KILT benchmark with two variants of backbone models, i.e., T5 and Llama2. Experimental results demonstrate the superior performance of our models in both retrieval and downstream tasks. Xiaoxi Li 0005, Zhicheng Dou, Yujia Zhou 0002, Fangchao Liu |
SIGIR | 1 |