fix(tui): stop streaming markdown/code after message completes#13854
fix(tui): stop streaming markdown/code after message completes#13854mocksoul wants to merge 5 commits intoanomalyco:betafrom
Conversation
- Remove OPENCODE_EXPERIMENTAL_PLAN_MODE flag from flag.ts - Update prompt.ts to always use plan mode logic - Update registry.ts to always include plan tools in CLI - Remove flag documentation from cli.mdx
|
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. |
|
The following comment was made by an LLM, it may be inaccurate: Potential Duplicate Found:
Why related: This PR addresses the same issue — preventing the last table row from being truncated/skipped after streaming completes. Both PRs are fixing the same behavior where incomplete messages cause the last row to be dropped, and both likely involve adjusting the streaming state logic for completed messages. |
6879f6f to
fff8129
Compare
3360045 to
91aed1e
Compare
|
Adding a +1 from a real-world user — this bug hits every table response when using This PR and #13674 cover the same root fix ( |
I dunno. Fix in opentui part already merged in main. |
|
Thanks for working on this fix! I was also investigating the same issue (Bug #13855) and started implementing the same solution with Looking forward to this being merged! 👍 |
Summary
TextPartpassesstreaming={true}unconditionally — even for completed messagesmessage.time.completedso finished messages render all rowsFixes #13855
Note
Full fix requires companion change in opentui (streaming setter must rebuild tables on
true→falsetransition). See anomalyco/opentui#696