Precise Length Control in Large Language Models
Bradley Butcher, Michael O'Keefe, James Titchener
TL;DR
The paper addresses the problem of controlling output length in decoder-only large language models by introducing a countdown mechanism via reverse length-difference positional encodings. It adapts LDPE (and the offset variant ORPE) for decoder-only architectures and trains models with a scaled embedding integration to learn to terminate outputs at a user-specified length, additionally proposing Max New Tokens++ to manage upper bounds. Empirical results on QA and document summarisation show precise, token-level length control with minimal degradation in content quality, and the Max New Tokens++ approach demonstrates effective upper-bound termination behavior. The work enhances the practicality of LLMs in production settings that require strict length constraints and opens avenues for counting strategies beyond tokens and broader model generalization.
Abstract
Large Language Models (LLMs) are increasingly used in production systems, powering applications such as chatbots, summarization, and question answering. Despite their success, controlling the length of their response remains a significant challenge, particularly for tasks requiring structured outputs or specific levels of detail. In this work, we propose a method to adapt pre-trained decoder-only LLMs for precise control of response length. Our approach incorporates a secondary length-difference positional encoding (LDPE) into the input embeddings, which counts down to a user-set response termination length. Fine-tuning with LDPE allows the model to learn to terminate responses coherently at the desired length, achieving mean token errors of less than 3 tokens. We also introduce Max New Tokens++, an extension that enables flexible upper-bound length control, rather than an exact target. Experimental results on tasks such as question answering and document summarization demonstrate that our method enables precise length control without compromising response quality.
