groove-dev 0.27.57 → 0.27.58
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/node_modules/@groove-dev/cli/package.json +1 -1
- package/node_modules/@groove-dev/daemon/package.json +1 -1
- package/node_modules/@groove-dev/daemon/src/conversations.js +2 -5
- package/node_modules/@groove-dev/gui/dist/assets/{index-X58BAjGp.js → index-oLUl--Me.js} +12 -12
- package/node_modules/@groove-dev/gui/dist/index.html +1 -1
- package/node_modules/@groove-dev/gui/package.json +1 -1
- package/node_modules/@groove-dev/gui/src/components/chat/chat-messages.jsx +19 -6
- package/node_modules/@groove-dev/gui/src/components/chat/chat-view.jsx +1 -0
- package/node_modules/@groove-dev/gui/src/components/layout/activity-bar.jsx +2 -2
- package/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/daemon/package.json +1 -1
- package/packages/daemon/src/conversations.js +2 -5
- package/packages/gui/dist/assets/{index-X58BAjGp.js → index-oLUl--Me.js} +12 -12
- package/packages/gui/dist/index.html +1 -1
- package/packages/gui/package.json +1 -1
- package/packages/gui/src/components/chat/chat-messages.jsx +19 -6
- package/packages/gui/src/components/chat/chat-view.jsx +1 -0
- package/packages/gui/src/components/layout/activity-bar.jsx +2 -2
|
@@ -344,12 +344,9 @@ export class ConversationManager {
|
|
|
344
344
|
continue;
|
|
345
345
|
}
|
|
346
346
|
|
|
347
|
-
// Claude Code stream-json: result block
|
|
347
|
+
// Claude Code stream-json: result block — skip broadcasting since
|
|
348
|
+
// the content was already streamed via assistant/content_block_delta
|
|
348
349
|
if (json.type === 'result' && json.result) {
|
|
349
|
-
this.daemon.broadcast({
|
|
350
|
-
type: 'conversation:chunk',
|
|
351
|
-
data: { conversationId: id, text: json.result },
|
|
352
|
-
});
|
|
353
350
|
continue;
|
|
354
351
|
}
|
|
355
352
|
|