dsh-neotui 0.0.26 → 0.0.27
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 +1 -1
- package/src/views.js +3 -4
package/package.json
CHANGED
package/src/views.js
CHANGED
|
@@ -1094,10 +1094,9 @@ export class ChatView extends Widget {
|
|
|
1094
1094
|
}
|
|
1095
1095
|
case "assistant": {
|
|
1096
1096
|
const blocks = node.blocks ?? [];
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
}
|
|
1097
|
+
// No separate "◌ 生成中…" marker line: it vanished at finalization,
|
|
1098
|
+
// snapping the pinned view by 1 line. Streaming state is already
|
|
1099
|
+
// visible via the block "…" suffixes and the live timers.
|
|
1101
1100
|
if (blocks.length === 0) { lines.push([{ t: " …", fg: K.FAINT }]); mark(realIdx); break; }
|
|
1102
1101
|
for (let bi = 0; bi < blocks.length; bi++) {
|
|
1103
1102
|
const b = blocks[bi];
|