AI SDK RSC: readStreamableValue

ID: 1642https://ai-sdk.dev/docs/reference/ai-sdk-rsc/read-streamable-value
Source

readStreamableValue

It is a function that helps you read the streamable value from the client that was originally created using createStreamableValue on the server.

Import

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

Example

async function generate() {
  'use server';
  const streamable = createStreamableValue();

  streamable.update(1);
  streamable.update(2);
  streamable.done(3);

  return streamable.value;
}
import { readStreamableValue } from '@ai-sdk/rsc';

export default function Page() {
  const [generation, setGeneration] = useState('');

  return (
    <div>
      <button
        onClick={async () => {
          const stream = await generate();

          for await (const delta of readStreamableValue(stream)) {
            setGeneration(generation => generation + delta);
          }
        }}
      >
        Generate
      </button>
    </div>
  );
}

API Signature

Parameters

<PropertiesTable content={[ { name: 'stream', type: 'StreamableValue', description: 'The streamable value to read from.', }, ]} />

Returns

It returns an async iterator that contains the values emitted by the streamable value.