fix(gateway): show Telegram context compaction notice - #40378
Closed
guinnessmax wants to merge 1 commit into
Closed
Conversation
Stop classifying the context compaction lifecycle status as Telegram noise. Long gateway turns can pause while Hermes summarizes older conversation history; Telegram users should see that state instead of waiting through silent compaction. Add regression coverage that keeps auxiliary/retry chatter filtered while allowing the compaction notice through.
4 tasks
Contributor
|
Closing — routine compaction is silent by design on chat surfaces: the noise regex this PR deletes from now gates every chat platform fail-closed (widened beyond Telegram by #39293), so removing the The right vehicle for what you want is #52995 — an opt-in, default-off progress notice. If that gets a maintainer yes, a reshaped version of this PR behind that flag would be welcome. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Telegram currently suppresses the context compaction lifecycle status as gateway noise:
r"|compacting\\s+context\\s+[—-]\\s+summarizing\\s+earlier\\s+conversation"That means long gateway turns can silently pause while Hermes summarizes older conversation history. From the user's perspective, especially in Telegram, this looks like the bot is stuck or has lost context.
This matches the concern raised in #16469: users have no signal when context is auto-compressed / summarized.
User-visible impact
_TELEGRAM_NOISY_STATUS_RE.Suggested fix
Do not classify the compaction lifecycle message as Telegram noise. Keep filtering noisy auxiliary/retry/provider chatter, but let this one status through.
Local verification