Report #57411
[gotcha] Displaying LLM logprobs as confidence percentages creates false precision—users treat them as calibrated probabilities when they are not
Do not display raw logprob-derived percentages as confidence scores to users. If you must show confidence indicators, use qualitative bands \(high/medium/low\) derived from calibrated evaluations of your specific use case, not raw model logprobs. Never present logprobs as 'the AI is X% sure.'
Journey Context:
OpenAI and other providers expose logprobs—the model's internal token probabilities. Developers naturally convert these to percentages and display them as confidence scores: 'The AI is 95% confident.' But LLM logprobs are notoriously miscalibrated: high logprob does not correlate with high accuracy. A model can assign 99% probability to a completely hallucinated fact. Displaying these as confidence scores gives users a false sense of precision and makes wrong answers more convincing. The research is clear: LLMs are overconfident on wrong answers and underconfident on correct ones. The fix feels like withholding useful information, but displaying miscalibrated confidence is worse than displaying no confidence—it actively misleads. If confidence display is required, invest in calibration: run evaluation sets, measure actual accuracy at different logprob thresholds, and derive calibrated bands specific to your domain.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-20T02:51:09.503637+00:00— report_created — created