fix(tui): resolve UI freezes during streaming and tool execution#570
Merged
fix(tui): resolve UI freezes during streaming and tool execution#570
Conversation
1950d15 to
b9ec650
Compare
bug-ops
added a commit
that referenced
this pull request
Feb 19, 2026
* fix(tui): resolve UI freezes during streaming and tool execution Batch agent events with biased tokio::select! to prioritize user input, and cache rendered message lines to eliminate redundant syntax highlighting and markdown parsing per frame. Closes #499, #500, #501 * docs: update TUI guide, performance notes, and changelog for freeze fixes
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
tokio::select!and batch agent events withtry_recv()drain loop to reduce draw calls per event burstRenderCachewith content-hash keying andtry_recv_agent_event()toAppChanges
crates/zeph-tui/src/lib.rscrates/zeph-tui/src/app.rsRenderCachestruct,try_recv_agent_event(), invalidation in event handlerscrates/zeph-tui/src/widgets/chat.rsTest plan
cargo clippy --workspace -- -D warningscleancargo +nightly fmt --checkcleanCloses #499,Closes #500,Closes #501