📄 ai-sdk/docs/reference/ai-sdk-ui/pipe-ui-message-stream-to-response

File: pipe-ui-message-stream-to-response.md | Updated: 11/15/2025

Source: https://ai-sdk.dev/docs/reference/ai-sdk-ui/pipe-ui-message-stream-to-response

AI SDK

Menu

v5 (Latest)

AI SDK 5.x

AI SDK by Vercel

AI SDK 6 Beta

Foundations

Overview

Providers and Models

Prompts

Tools

Streaming

Getting Started

Navigating the Library

Next.js App Router

Next.js Pages Router

Svelte

Vue.js (Nuxt)

Node.js

Expo

Agents

Agents

Building Agents

Workflow Patterns

Loop Control

AI SDK Core

Overview

Generating Text

Generating Structured Data

Tool Calling

Model Context Protocol (MCP) Tools

Prompt Engineering

Settings

Embeddings

Image Generation

Transcription

Speech

Language Model Middleware

Provider & Model Management

Error Handling

Testing

Telemetry

AI SDK UI

Overview

Chatbot

Chatbot Message Persistence

Chatbot Resume Streams

Chatbot Tool Usage

Generative User Interfaces

Completion

Object Generation

Streaming Custom Data

Error Handling

Transport

Reading UIMessage Streams

Message Metadata

Stream Protocols

AI SDK RSC

Advanced

Reference

AI SDK Core

AI SDK UI

useChat

useCompletion

useObject

convertToModelMessages

pruneMessages

createUIMessageStream

createUIMessageStreamResponse

pipeUIMessageStreamToResponse

readUIMessageStream

InferUITools

InferUITool

AI SDK RSC

Stream Helpers

AI SDK Errors

Migration Guides

Troubleshooting

Copy markdown

pipeUIMessageStreamToResponse

================================================================================================================================================

The pipeUIMessageStreamToResponse function pipes streaming data to a Node.js ServerResponse object (see Streaming Data ).

Import


import { pipeUIMessageStreamToResponse } from "ai"

Example


pipeUIMessageStreamToResponse({  response: serverResponse,  status: 200,  statusText: 'OK',  headers: {    'Custom-Header': 'value',  },  stream: myUIMessageStream,  consumeSseStream: ({ stream }) => {    // Optional: consume the SSE stream independently    console.log('Consuming SSE stream:', stream);  },});

API Signature


Parameters

response:

ServerResponse

The Node.js ServerResponse object to pipe the data to.

stream:

ReadableStream<UIMessageChunk>

The UI message stream to pipe to the response.

status:

number

The status code for the response.

statusText:

string

The status text for the response.

headers:

Headers | Record<string, string>

Additional headers for the response.

consumeSseStream:

({ stream }: { stream: ReadableStream }) => void

Optional function to consume the SSE stream independently. The stream is teed and this function receives a copy.

On this page

pipeUIMessageStreamToResponse

Import

Example

API Signature

Parameters

Deploy and Scale AI Apps with Vercel.

Vercel delivers the infrastructure and developer experience you need to ship reliable AI-powered applications at scale.

Trusted by industry leaders:

  • OpenAI
  • Photoroom
  • leonardo-ai Logoleonardo-ai Logo
  • zapier Logozapier Logo

Talk to an expert