This example shows how to implement a simple chat bot using Next.js, API Routes, and OpenAI API.
You can choose from one of the following two methods to use this repository:
Deploy the example using Vercel:
Execute create-next-app
with npm or Yarn to bootstrap the example:
Set up environment variablesnpx create-next-app --example https://github.com/vercel/examples/tree/main/solutions/ai-chatgpt # or yarn create next-app --example https://github.com/vercel/examples/tree/main/solutions/ai-chatgpt
Rename .env.example
to .env.local
:
cp .env.example .env.local
then, update OPENAI_API_KEY
with your OpenAI secret key.
Next, run Next.js in development mode:
npm install npm run dev # or yarn yarn dev
The app should be up and running at http://localhost:3000.
Deploy it to the cloud with Vercel (Documentation).
Simple chat bot implemented with Next.js, API Routes, and OpenAI SDK (GPT-3).
This example shows how to implement a simple chat bot using Next.js, API Routes, and OpenAI API.
You can choose from one of the following two methods to use this repository:
Deploy the example using Vercel:
Execute create-next-app
with npm or Yarn to bootstrap the example:
Set up environment variablesnpx create-next-app --example https://github.com/vercel/examples/tree/main/solutions/ai-chatgpt # or yarn create next-app --example https://github.com/vercel/examples/tree/main/solutions/ai-chatgpt
Rename .env.example
to .env.local
:
cp .env.example .env.local
then, update OPENAI_API_KEY
with your OpenAI secret key.
Next, run Next.js in development mode:
npm install npm run dev # or yarn yarn dev
The app should be up and running at http://localhost:3000.
Deploy it to the cloud with Vercel (Documentation).