diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index 100d7c5d6e..d47a91697a 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -2060,7 +2060,7 @@ messages: messages.map((m) => ({ id: m.id, role: m.role, - content: m.content, + content: getOutputText(m.output) || m.content, info: m.info ? m.info : undefined, timestamp: m.timestamp, ...(m.sources ? { sources: m.sources } : {})