Interactions with large language models (LLMs) often yield long and detailed responses, leveraging both parametric knowledge and retrieval-augmented generation (RAG). While these responses can provide rich insights, they often include redundant or less engaging content not aligned with user interests. This issue becomes apparent when users specify particular subtopics to include or exclude -- termed coverage-conditioned (
$C^2$ ) queries -- as LLMs often struggle to provide tailored responses. To address this challenge, we investigate the role of query outlines, sequences of subqueries designed to guide LLMs in generating responses that meet specific user requirements. To systematically create and evaluate these outlines, we introduce QTree, a dataset of 10K hierarchical sets of information-seeking subqueries that define structured boundaries for outline creation and evaluation in$C^2$ scenarios. Additionally, we develop QPlanner, a 7B language model trained to generate customized outlines within boundaries of QTree. We evaluate the effectiveness of the generated outlines through automatic and human judgements, focusing on their impact within retrieval-augmented generation (RAG) systems. Experimental results demonstrate that QPlanner, especially when trained with alignment techniques like DPO, generates higher-quality outlines that better fulfill diverse user needs.
- # of dataset: 10,580 [LINK]
- Note: There are three more samples than those specified in the paper.
- Configuration
-
question
: Base query ($q_{base}$ ) -
instruction
: Coverage query ($q_{cov}$ ) -
background
: Background query -
intention
: Intent operation (include/exclude) -
tree
: QTree (a hierarchical set of queries) -
candidates
: Three candidate query outlines (i.e., four subqueries from QTree) extracted by LLM
-
- # of dataset: 300 [LINK]
- Configuration
-
question
: Base query ($q_{base}$ ) -
instruction
: Coverage query ($q_{cov}$ ) -
background
: Background query -
intention
: Intent operation (include/exclude) -
tree
: QTree (a hierarchical set of queries)
-
- Our QTree is based on seed queries from ASQA, Longform, and ExpertQA.
- We appreciate 🤗alignment-handbook for providing easy LM training framework!
@misc{kim2025learningexploreselectcoverageconditioned,
title={Learning to Explore and Select for Coverage-Conditioned Retrieval-Augmented Generation},
author={Takyoung Kim and Kyungjae Lee and Young Rok Jang and Ji Yong Cho and Gangwoo Kim and Minseok Cho and Moontae Lee},
year={2025},
eprint={2407.01158},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2407.01158},
}