Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 740 Bytes

README.md

File metadata and controls

39 lines (26 loc) · 740 Bytes

GPT 3.5 Turbo Chat Bot

Forked from https://github.com/notunderctrl/gpt-3.5-chat-bot.git .

This is a simple Discord chat bot built using discord.js and the gpt-3.5-turbo model from Open AI. This is the same model used for the popular chatbot Chat GPT.

We have modified it a bit to only respond to @mentions.

How to setup

  1. Clone the repository to the current directory

  2. Install all the dependencies

  • Using npm
npm install
  • Using yarn
yarn
  1. Create a new file called .env and copy the format from .env.example (or you can just rename .env.example)

  2. Update .env with your own credentials.

  3. Start your bot

  • Using npm
npm run start
  • Using yarn
yarn start