Skip to content
This repository has been archived by the owner on Jul 14, 2023. It is now read-only.

debugtheworldbot/ai-gpt3-chatbot

Repository files navigation

AI Chat using GPT-3.5 turbo with nextjs

This example shows how to implement a simple chat bot using Next.js, API Routes, and OpenAI API.

Components

  • Next.js
  • OpenAI API (REST endpoint)
  • API Routes (Edge runtime)

How to Use

You can choose from one of the following two methods to use this repository:

One-Click Deploy

Deploy the example using Vercel:

Deploy with Vercel

Clone and Deploy

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

npx 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

Set up environment variables

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).