This example shows how to use the Vercel AI SDK with Nuxt, and OpenAI to create a ChatGPT-like AI-powered streaming chat bot.
Deploy the example using Vercel:
Execute nuxi
to bootstrap the example:
npx nuxi@latest init -t github:vercel/ai/examples/nuxt-openai nuxt-openai
To run the example locally you need to:
- Sign up at OpenAI's Developer Platform.
- Go to OpenAI's dashboard and create an API KEY.
- Set the required OpenAI environment variable as the token value as shown the example env file but in a new file called
.env
. pnpm install
to install the required dependencies.pnpm dev
to launch the development server.
This example can be directly deployed to Vercel, you can run the following commands:
pnpm run build
vercel deploy
This example is configured to use the vercel-edge
[Nitro preset.
This means that the example will be deployed to Vercel's Edge Network.
You can use different providers, such as vercel
by modifying your nuxt.config.ts
file, or using the NITRO_PRESET
environment variable.
To learn more about OpenAI, Nuxt, and the Vercel AI SDK take a look at the following resources:
- Vercel AI SDK docs - learn mode about the Vercel AI SDK
- Vercel AI Playground - compare and tune 20+ AI models side-by-side
- OpenAI Documentation - learn about OpenAI features and API.
- Nuxt Documentation - learn about Nuxt features and API.