Back to Ai

AI SDK, Next.js, and OpenAI Chat Example with Sentry

examples/next-openai-telemetry-sentry/README.md

2.1.103.1 KB
Original Source

AI SDK, Next.js, and OpenAI Chat Example with Sentry

This example shows how to use the AI SDK with Next.js, OpenAI and Sentry to create a ChatGPT-like AI-powered streaming chat bot with OpenTelemetry support.

Deploy your own

Deploy the example using Vercel:

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

bash
npx create-next-app --example https://github.com/vercel/ai/tree/main/examples/next-openai-telemetry-sentry next-openai-telemetry-sentry-app
bash
yarn create next-app --example https://github.com/vercel/ai/tree/main/examples/next-openai-telemetry-sentry next-openai-telemetry-sentry-app
bash
pnpm create next-app --example https://github.com/vercel/ai/tree/main/examples/next-openai-telemetry-sentry next-openai-telemetry-sentry-app

To run the example locally you need to:

  1. Sign up at OpenAI's Developer Platform.
  2. Go to OpenAI's dashboard and create an API KEY.
  3. Set the required OpenAI environment variable as the token value as shown the example env file but in a new file called .env.local
  4. Sign up at Sentry and create a new project.
  5. Copy the Sentry Organization Slug from the project settings and set it as the SENTRY_ORG environment variable.
  6. Copy the Sentry Project Slug from the project settings and set it as the SENTRY_PROJECT environment variable.
  7. Copy the Sentry Auth Token from the project settings and set it as the SENTRY_AUTH_TOKEN environment variable.
  8. Copy the Sentry DSN from the project settings and set it as the NEXT_PUBLIC_SENTRY_DSN environment variable.
  9. pnpm install to install the required dependencies.
  10. pnpm dev to launch the development server.

Learn More

To learn more about OpenAI, Next.js, and the AI SDK take a look at the following resources: