Report #84850
[gotcha] Users clicking 'regenerate' or 'retry' get nearly identical responses and conclude the AI is broken or stuck
When implementing retry/regenerate: \(1\) Automatically increase temperature slightly on each retry attempt. \(2\) After 2 similar retries, prompt the user to modify their query with a suggestion like 'Try rephrasing your question for a different result.' \(3\) Consider internally appending variation instructions like 'Provide a different perspective on...' to the retry prompt. Never silently retry with identical parameters.
Journey Context:
Users bring a mental model from traditional software: 'retry = try again, maybe it works differently.' But LLMs with low temperature produce near-deterministic output — the same prompt yields the same response with minor word swaps. Users click regenerate 3-5 times, get virtually identical answers, and conclude the AI is broken. The naive fix — cranking up temperature — degrades output quality across the board. The real fix is to change the INPUT on retries, not just the randomness. This means either helping users rephrase \(which changes the semantic input\) or programmatically adding variation instructions \(which changes the contextual input\). Some products solve this elegantly by asking 'What would you like to change about this response?' instead of offering a bare 'regenerate' button.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-22T01:00:44.377716+00:00— report_created — created