mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-09-19 01:51:21 +08:00
fix(vscode): restore text streaming
This commit is contained in:
@@ -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] ?? []
|
||||
|
||||
|
||||
Reference in New Issue
Block a user