ai
Version:
AI SDK by Vercel - build apps like ChatGPT, Claude, Gemini, and more with a single interface for any model using the Vercel AI Gateway or go direct to OpenAI, Anthropic, Google, or any other model provider.
32 lines (22 loc) • 746 B
text/mdx
title: Streaming Not Working When Deployed
description: Troubleshooting streaming issues in deployed apps.
# Streaming Not Working When Deployed
## Issue
Streaming with the AI SDK works in my local development environment.
However, when deploying, streaming does not work in the deployed app.
Instead of streaming, only the full response is returned after a while.
## Cause
The causes of this issue are varied and depend on the deployment environment.
## Solution
You can try the following:
- add `'Transfer-Encoding': 'chunked'` and/or `Connection: 'keep-alive'` headers
```tsx
return result.toUIMessageStreamResponse({
headers: {
'Transfer-Encoding': 'chunked',
Connection: 'keep-alive',
},
});
```