fix(session): compact finished overflowed turns#27730
Open
adao-max wants to merge 2 commits into
Open
Conversation
Contributor
|
Thanks for your contribution! This PR doesn't have a linked issue. All PRs must reference an existing issue. Please:
See CONTRIBUTING.md for details. |
Contributor
|
The following comment was made by an LLM, it may be inaccurate: Based on the search results, I found one related PR that may be worth reviewing alongside this one: Related PR:
The other PRs found (#15130, #14743, #10123, #20491, #21567) are related to compaction more broadly but don't appear to be duplicates of the current PR's specific fix. No true duplicate PRs found for this specific issue (the current PR #27730 is correctly excluded from the results). PR #20247 is the closest related work on overflow compaction logic. |
Contributor
|
Thanks for updating your PR! It now meets our contributing guidelines. 👍 |
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.
Issue for this PR
Fixes #15533
Related: #20247
Type of change
What does this PR do?
Auto-compaction had two adjacent edge cases when the assistant had already finished normally:
Continue...prompt and start another agent response instead of waiting for the next real user message.This PR moves the finished-turn overflow check before the normal loop exit and skips synthetic auto-continue when the last non-summary assistant has already finished with a non-tool-call finish reason.
How did you verify your code works?
bun test test/session/prompt.test.ts --timeout 30000bun test test/session/compaction.test.ts --timeout 30000bun run typecheckScreenshots / recordings
N/A — not a UI change.
Checklist