Fix context window overflow: auto-recovery and proactive compaction#1973
Open
yunus25jmi1 wants to merge 1 commit intodocker:mainfrom
Open
Fix context window overflow: auto-recovery and proactive compaction#1973yunus25jmi1 wants to merge 1 commit intodocker:mainfrom
yunus25jmi1 wants to merge 1 commit intodocker:mainfrom
Conversation
…compaction When tool results push the conversation past the model's context limit, the agent would crash with raw HTTP errors and no recovery path. This change: - Detects context overflow errors from all major providers (14 patterns) - Skips pointless retries when the context is too large - Auto-compacts and retries when overflow is caught (safety net) - Estimates token cost of tool results and compacts before hitting the limit (root-cause prevention) - Shows clear error messages instead of raw API responses Fixes docker#1750
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.
Problem
When tool results push the conversation past the model's context limit, the agent crashes with raw HTTP errors like \prompt is too long: 226360 tokens > 200000 maximum\ and never recovers.
Fixes #1750
What this does
Prevents overflow before it happens:
Recovers if overflow still occurs:
Files changed
Testing