AI SDK RSC: createStreamableValue

ID: 1573https://ai-sdk.dev/docs/reference/ai-sdk-rsc/create-streamable-value
Source

createStreamableValue

Create a stream that sends values from the server to the client. The value can be any serializable data.

Import

<Snippet text={import { createStreamableValue } from "@ai-sdk/rsc"} prompt={false} />

API Signature

Parameters

<PropertiesTable content={[ { name: 'value', type: 'any', description: 'Any data that RSC supports. Example, JSON.', }, ]} />

Returns

<PropertiesTable content={[ { name: 'value', type: 'streamable', description: 'This creates a special value that can be returned from Actions to the client. It holds the data inside and can be updated via the update method.', }, ]} />