Papers for

enterprise chatbot teams

Papers whose findings have a practical use for this group, as judged from the abstract. Open a paper to read what it means in practice.

Combined method improves long input response speed and accuracy

Fine-Tuning a KV Cache Concatenation-Aware Model or Recomputing KV Caches? Why Not Both?

Abstract: In Retrieval-Augmented Generation (RAG) systems, a large number of retrieved chunks are concatenated to form the input context so that users can receive high-quality responses based on external knowledge. As a result, the input context length increases substantially, leading to a larger prefill workload and, in turn, a longer time to first token (TTFT). While previous works that reuse precomputed key-value (KV) caches effectively reduce TTFT for long-context inputs, it remains unclear whether response quality is preserved when the input context becomes very long. In this paper, we propose a combined approach that (i) fine-tunes the model while taking KV cache concatenation into account and (ii) selectively recomputes a subset of the KV caches. By applying both techniques, we demonstrate improved accuracy for long-context inputs. Experiments on the RULER benchmark show that, for a 124k-token input, our method improves the RULER score by 9.7 point over the baseline that recomputes KV caches only. Moreover, TTFT is reduced by 80% compared with full attention.

Wed 9 SeptMachine LearningArtificial IntelligenceComputation and Language
The gist
When language models answer questions using lots of information, processing everything takes a long time before the first answer word appears. The authors looked into ways to speed this up without losing answer quality by teaching the model to handle joined information chunks better and only updating some parts as needed. Their approach made responses more accurate and much faster when dealing with very long inputs. This could help systems that rely on pulling in large external knowledge collections to give better and quicker answers.
Open 2609.09768v1