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
commit 5d6f2a1524
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 37 additions and 2 deletions

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