bingocode 1.1.118 → 1.1.120

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bingocode",
3
- "version": "1.1.118",
3
+ "version": "1.1.120",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "claude": "bin/claude-win.cjs",
@@ -3003,6 +3003,10 @@ export function handleMessageFromStream(
3003
3003
  if (message.event.type === 'message_stop') {
3004
3004
  onSetStreamMode('tool-use')
3005
3005
  onStreamingToolUses(() => [])
3006
+ // Clear streaming text at message_stop so the SDK's async assembly of the
3007
+ // final assistant message does not produce a render frame where both
3008
+ // streamingText (residual) and renderableMessages (final) show the same text.
3009
+ onStreamingText?.(() => null)
3006
3010
  return
3007
3011
  }
3008
3012