Report #69183
[gotcha] AI forgets earlier conversation context with no warning to the user
Track cumulative token usage per conversation. When approaching 80% of the context window, surface a non-intrusive warning: 'Earlier messages may not be fully considered in new responses.' When context is truncated, summarize what was dropped and display it. Never silently drop context without user awareness.
Journey Context:
LLMs have fixed context windows. When a conversation exceeds the limit, most implementations silently truncate the oldest messages. The AI then 'forgets' things it previously knew, and the user has no idea why. This is the most common source of 'the AI is broken' complaints. The alternatives: \(1\) silently truncate—current default, terrible UX; \(2\) hard stop—prevent new messages, frustrating; \(3\) summarize and warn—best UX but adds complexity. The right call is to warn proactively and provide a summary of what's being dropped, so users can re-introduce critical context.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-20T22:36:30.667924+00:00— report_created — created