Stream Protocols
AI SDK UI functions such asuseChat and useCompletion support both text streams and data streams.
The stream protocol defines how the data is streamed to the frontend on top of the HTTP protocol.
This page describes both protocols and how to use them in the backend and frontend.
You can use this information to develop custom backends and frontends for your use case, e.g.,
to provide compatible API endpoints that are implemented in a different language such as Python.
For instance, here’s an example using FastAPI as a backend.
Text Stream Protocol
A text stream contains chunks in plain text, that are streamed to the frontend. Each chunk is then appended together to form a full text response. Text streams are supported byuseChat, useCompletion, and useObject.
When you use useChat or useCompletion, you need to enable text streaming
by setting the streamProtocol options to text.
You can generate text streams with streamText in the backend.
When you call toTextStreamResponse() on the result object,
a streaming HTTP response is returned.
Text streams only support basic text data. If you need to stream other types
of data such as tool calls, use data streams.
Text Stream Example
Here is a Next.js example that uses the text stream protocol:Data Stream Protocol
A data stream follows a special protocol that the AI SDK provides to send information to the frontend. The data stream protocol uses Server-Sent Events (SSE) format for improved standardization, keep-alive through ping, reconnect capabilities, and better cache handling.When you provide data streams from a custom backend, you need to set the
x-vercel-ai-ui-message-stream header to v1.Message Start Part
Indicates the beginning of a new message with metadata. Format: Server-Sent Event with JSON object Example:Text Parts
Text content is streamed using a start/delta/end pattern with unique IDs for each text block.Text Start Part
Indicates the beginning of a text block. Format: Server-Sent Event with JSON object Example:Text Delta Part
Contains incremental text content for the text block. Format: Server-Sent Event with JSON object Example:Text End Part
Indicates the completion of a text block. Format: Server-Sent Event with JSON object Example:Reasoning Parts
Reasoning content is streamed using a start/delta/end pattern with unique IDs for each reasoning block.Reasoning Start Part
Indicates the beginning of a reasoning block. Format: Server-Sent Event with JSON object Example:Reasoning Delta Part
Contains incremental reasoning content for the reasoning block. Format: Server-Sent Event with JSON object Example:Reasoning End Part
Indicates the completion of a reasoning block. Format: Server-Sent Event with JSON object Example:Source Parts
Source parts provide references to external content sources.Source URL Part
References to external URLs. Format: Server-Sent Event with JSON object Example:Source Document Part
References to documents or files. Format: Server-Sent Event with JSON object Example:File Part
The file parts contain references to files with their media type. Format: Server-Sent Event with JSON object Example:Data Parts
Custom data parts allow streaming of arbitrary structured data with type-specific handling. Format: Server-Sent Event with JSON object where the type includes a custom suffix Example:data-* type pattern allows you to define custom data types that your frontend can handle specifically.
Error Part
The error parts are appended to the message as they are received. Format: Server-Sent Event with JSON object Example:Tool Input Start Part
Indicates the beginning of tool input streaming. Format: Server-Sent Event with JSON object Example:Tool Input Delta Part
Incremental chunks of tool input as it’s being generated. Format: Server-Sent Event with JSON object Example:Tool Input Available Part
Indicates that tool input is complete and ready for execution. Format: Server-Sent Event with JSON object Example:Tool Output Available Part
Contains the result of tool execution. Format: Server-Sent Event with JSON object Example:Start Step Part
A part indicating the start of a step. Format: Server-Sent Event with JSON object Example:Finish Step Part
A part indicating that a step (i.e., one LLM API call in the backend) has been completed. This part is necessary to correctly process multiple stitched assistant calls, e.g. when calling tools in the backend, and using steps inuseChat at the same time.
Format: Server-Sent Event with JSON object
Example:
Finish Message Part
A part indicating the completion of a message. Format: Server-Sent Event with JSON object Example:Abort Part
Indicates the stream was aborted. Format: Server-Sent Event with JSON object Example:Stream Termination
The stream ends with a special[DONE] marker.
Format: Server-Sent Event with literal [DONE]
Example:
useChat and useCompletion on the frontend and used by default.
useCompletion only supports the text and data stream parts.
On the backend, you can use toUIMessageStreamResponse() from the streamText result object to return a streaming HTTP response.