fix(ui): use part_text_accum_delta to prevent markdown cutoff during streaming (#26822)

This commit is contained in:
Brendan Allan
2026-05-11 15:15:03 +08:00
committed by GitHub
parent b1cb71856e
commit 5d6f2a1524
8 changed files with 37 additions and 2 deletions
+3
View File
@@ -24,6 +24,9 @@ type Data = {
part: {
[messageID: string]: Part[]
}
part_text_accum_delta?: {
[partID: string]: string
}
}
export type NavigateToSessionFn = (sessionID: string) => void