fix(vscode): restore text streaming

This commit is contained in:
marius-kilocode
2026-08-17 12:39:00 +02:00
parent 9d27403ee3
commit ba2e20a87d
2 changed files with 8 additions and 1 deletions
+5
View File
@@ -0,0 +1,5 @@
---
"kilo-code": patch
---
Restore incremental assistant text streaming across Kilo chat surfaces.
@@ -2715,7 +2715,9 @@ export const SessionProvider: ParentComponent = (props) => {
return id ? store.messages[id] || [] : []
}
const getParts = (messageID: string) => stash.peek(messageID) ?? untrack(() => store.parts[messageID]) ?? []
// Keep off-screen history in the non-reactive stash, but track live parts so
// newly streamed messages invalidate the transcript.
const getParts = (messageID: string) => stash.peek(messageID) ?? store.parts[messageID] ?? []
const getSessionToolParts = (sessionID: string) => store.toolParts[sessionID] ?? []