vercel-ai-sdk
Installation
SKILL.md
Vercel AI SDK for Remix Integration
The Vercel AI SDK is the standard for building AI UIs. It abstracts streaming, state management, and provider differences.
1. Setup
npm install ai @ai-sdk/openai
2. Server-side Streaming (action function)
Remix uses Response objects. The AI SDK has a helper StreamingTextResponse.
// app/routes/api.chat.ts
import { streamText } from 'ai';
import { openai } from '@ai-sdk/openai';
import { ActionFunctionArgs } from "@remix-run/node";