Streaming text
Streaming text with Vercel's AI SDK
typescript
const result = streamText({
model: openai('gpt-4o-mini'),
system: 'You are a helpful assistant.',
messages,
});
return result.toDataStreamResponse();
const result = streamText({
model: openai('gpt-4o-mini'),
system: 'You are a helpful assistant.',
messages,
});
return result.toDataStreamResponse();