What Happened
In December 2025, a lifehack swept through AI channels: paste your prompt into ChatGPT, Gemini, or Claude twice in the same message, and accuracy jumps by 76%. The claim was attached to a Google Research paper, which made it sound bulletproof. One independent tester decided to actually check it rather than repost it, spending $1.48 and running 3,360 API requests to see what the study really showed.
The source turned out to be a preprint titled "Prompt Repetition Improves Non-Reasoning LLMs," written by three Google Research scientists. The word missing from every viral repost is right there in the title: non-reasoning. The researchers only tested models that were not allowed to think step by step before answering. Across 70 comparisons, prompt repetition won 47 times with statistical significance and lost zero times. That is a real, measurable effect — just not the flashy "+76% to everything" headline that spread on social media.
The 76% figure comes from a single stress test, not an average. Researchers asked Gemini 2.0 Flash-Lite to name the 25th item in a list of 50 names. Without repetition, the model got it right 21.33% of the time. With the prompt pasted twice, accuracy jumped to 97.33%. That is a 76 percentage-point gain on one narrow long-list retrieval task — the difference between "load time dropped by 76 milliseconds" and "load time dropped by 76%." Absolute and relative numbers are not the same thing, and the viral version blurred the two.
Why It Matters
For anyone building AI-powered products or workflows, this distinction is not pedantic — it changes whether the AI prompt repetition trick is worth adopting. If it really added 76% accuracy across the board, every AI product would be leaving huge performance on the table by not doing it automatically. In reality, the paper shows a real but modest and task-specific improvement, concentrated in scenarios where a model has to extract or index into a long list.
The hypothesis behind the effect is intuitive. LLMs process text left to right. When a long list appears before the question, the model reads through it without knowing what will be asked, the same way a person skims a page before knowing which detail matters. Pasting the prompt a second time means the question comes before the list is read again — the model effectively re-reads the data now knowing exactly what to look for, cheaply mimicking the way humans reread a paragraph once they know what they are searching for.
There is also a timing problem worth flagging. The preprint was published in December 2025, and Google retired Gemini 2.0 Flash-Lite on June 1, 2026 — the exact model behind the viral 76% number. That means nobody can precisely reproduce the original benchmark anymore, even though the trick keeps spreading as if it were a permanent, universal fact about AI.
How to Use It Today
The independent test used a frozen dataset of 220 tasks, hashed with SHA-256 before the first paid API call so nothing could be adjusted after the fact. It split into two suites: a 160-task stress suite adapting the paper's own NameIndex and MiddleMatch tasks (half in English, half in Russian, to check whether the effect survives across languages and tokenization — something the original paper never tested), and a 60-task practical suite covering everyday tasks like totaling a receipt, counting letters, comparing date ranges, filtering hotel options, and translating short phrases.
The testing rules are worth copying if you want to try this yourself: call the API directly rather than a chat interface, start every request from a blank context with no history and no system prompt, set temperature to 0, and when repeating, just paste the full prompt twice with a blank line in between — no special wording needed.
That last point matters because an earlier claim suggested adding a marker like "I repeat my question:" performs better than a plain mechanical copy-paste. The independent data found no measurable difference between the two. There is no need to overthink the phrasing — duplication alone does the work.
If you want a low-effort way to test prompt structures like this on your own tasks before committing to a workflow, free tools like [mykreatool.com](https://mykreatool.com) let you experiment across different AI models without setting up your own API pipeline.
Who Benefits
This finding is most useful for people building lightweight, cost-sensitive AI features: chatbots on budget or "flash" model tiers, internal tools that pull specific rows out of long lists or tables, and any workflow where a non-reasoning model has to locate one item buried in a large block of context. Marketers extracting data points from long reports, support teams building FAQ lookups, and developers wiring up fast, cheap models for structured retrieval are the clearest beneficiaries.
It is less relevant for anyone already using a reasoning model with chain-of-thought enabled. The original study did not test those, and there is no evidence yet that the same trick helps once a model is already reasoning through the problem step by step.
Risks
The biggest risk is treating a narrow, task-specific result as a universal AI performance hack. The viral "+76%" framing already caused that confusion once. Applying prompt repetition to every query doubles token usage and cost for a benefit that, outside long-list retrieval tasks, may be negligible or nonexistent.
There is also a reproducibility risk baked into fast-moving AI infrastructure: the exact model used in the original benchmark, Gemini 2.0 Flash-Lite, no longer exists, so claims tied to it can never be re-verified on the same system. Anyone citing this trick as proven should point to independently reproduced numbers on current models, not the original December 2025 benchmark.
Conclusion
The AI prompt repetition trick is real, but it is narrower and less dramatic than the viral version suggested: a genuine, statistically significant improvement on non-reasoning models handling long-list retrieval tasks, not a blanket 76% accuracy boost. There is no need for special repeat phrasing — plain duplication works just as well. Before adopting any viral AI shortcut, it is worth testing it against your own tasks and your own models, the same way this $1.48 experiment did, rather than trusting a headline number out of context.



Comments 0