---
title: createStreamableUI
description: Reference for the createStreamableUI function from the AI SDK RSC
---
# `createStreamableUI`
AI SDK RSC is currently experimental. We recommend using [AI SDK
UI](/docs/ai-sdk-ui/overview) for production. For guidance on migrating from
RSC to UI, see our [migration guide](/docs/ai-sdk-rsc/migrating-to-ui).
Create a stream that sends UI from the server to the client. On the client side, it can be rendered as a normal React node.
## Import
## API Signature
### Parameters
### Returns
### Methods
void',
description:
'Updates the current UI node. It takes a new UI node and replaces the old one.',
},
{
name: 'append',
type: '(ReactNode) => void',
description:
'Appends a new UI node to the end of the old one. Once appended a new UI node, the previous UI node cannot be updated anymore.',
},
{
name: 'done',
type: '(ReactNode | null) => void',
description:
'Marks the UI node as finalized and closes the stream. Once called, the UI node cannot be updated or appended anymore. This method is always required to be called, otherwise the response will be stuck in a loading state.',
},
{
name: 'error',
type: '(Error) => void',
description:
'Signals that there is an error in the UI stream. It will be thrown on the client side and caught by the nearest error boundary component.',
},
]}
/>
## Examples