You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using @ai-sdk/vue's useChat() composable with streamText() from ai, there is an inconsistency in the order of message parts between the streamed response and the streamText({onFinish}) callback.
This causes issues with rendering messages consistently in chat UIs after reloads.
⚠️ Problem
If a message includes tool invocations, the order of parts (e.g., text vs. tool-calls) can differ between:
Streamed message parts (received progressively)
Final message in the onFinish (streamText()) callback
Description
📄 Description
When using
@ai-sdk/vue
'suseChat()
composable withstreamText()
fromai
, there is an inconsistency in the order of message parts between the streamed response and thestreamText({onFinish})
callback.This causes issues with rendering messages consistently in chat UIs after reloads.
If a message includes tool invocations, the order of parts (e.g., text vs. tool-calls) can differ between:
onFinish
(streamText()) callback📎 Example
Streamed events:
Resulting message in
useChat()
messages array:Message in
onFinish
callback:🔍 Suspected Cause
The issue likely originates from
toResponseMessages()
, where the transformation logic reorders message parts.✅ Expected Behavior
The order of message parts (text, tool-call, etc.) should remain consistent between:
useChat
internal state), andstreamText({onFinish})
callback.🙏 Request
Please consider ensuring
toResponseMessages()
maintains a deterministic and consistent part ordering in both streamed and finalized responses.Code example
No response
AI provider
@ai-sdk/google 1.1.12
Additional context
No response
The text was updated successfully, but these errors were encountered: