diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index a6800f512..2bd65e88f 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -156,6 +156,8 @@ } else { message.citations = [data]; } + } else if (type === 'message') { + message.content += data.content; } else if (type === 'confirmation') { eventCallback = cb; showEventConfirmation = true;