Repeat the prompt when the model is not reasoning
February 28, 2026

A pattern worth trying: when the model is not reasoning, send the query twice. <QUERY> becomes <QUERY><QUERY>. Causal models cannot look ahead, so token order matters. The second copy lets every prompt token attend to every other prompt token.
Prompt Repetition Improves Non-Reasoning LLMs measured that on Gemini, GPT, Claude, and Deepseek. 47 significant wins out of 70, zero losses. Output length and latency stay flat because the extra work is in prefill. The response format does not change, so it is a drop-in. With reasoning on, the paper found it mostly neutral.
Do not pad with dots. The gain is the second copy, not the extra length. On some retrieval-style tasks, three copies beat two.