This example shows how to use the Vercel AI SDK with Next.js and AirOps to create a ChatGPT-like AI-powered streaming chat bot.
Deploy the example using Vercel:
Execute create-next-app
with npm, Yarn, or pnpm to bootstrap the example:
npx create-next-app --example https://github.com/airopshq/airops-vercel-ai-example/tree/main next-airops-app
yarn create next-app --example https://github.com/airopshq/airops-vercel-ai-example/tree/main next-airops-app
pnpm create next-app --example https://github.com/airopshq/airops-vercel-ai-example/tree/main next-airops-app
To run the example locally you need to:
- Sign up at Airops.
- Go to Workspace's settings and copy your API KEY.
- Set the required Airops environment variable as the token value as shown the example env file but in a new file called
.env.local
pnpm install
to install the required dependencies.pnpm dev
to launch the development server.
To learn more about Mistral, Next.js, and the Vercel AI SDK take a look at the following resources:
- Vercel AI SDK docs
- Vercel AI Playground
- Airops Documentation - learn about Airops features and API.
- Next.js Documentation - learn about Next.js features and API.