https://github.com/notunderctrl/gpt-3.5-chat-bot
Simple Discord chat bot built using the GPT 3.5 Turbo Model from OpenAI
https://github.com/notunderctrl/gpt-3.5-chat-bot
discord-js gpt-3 gpt-35-turbo
Last synced: 6 months ago
JSON representation
Simple Discord chat bot built using the GPT 3.5 Turbo Model from OpenAI
- Host: GitHub
- URL: https://github.com/notunderctrl/gpt-3.5-chat-bot
- Owner: notunderctrl
- Created: 2023-03-08T11:12:31.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-13T20:09:17.000Z (almost 2 years ago)
- Last Synced: 2025-04-03T01:07:44.845Z (6 months ago)
- Topics: discord-js, gpt-3, gpt-35-turbo
- Language: JavaScript
- Homepage: https://youtu.be/CB76_GDrPsE
- Size: 28.3 KB
- Stars: 125
- Watchers: 5
- Forks: 120
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GPT 3.5 Turbo Chat Bot
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.
A full video tutorial for this chat bot can be found [here](https://youtu.be/CB76_GDrPsE)
## How to setup
1. Clone the repository to the current directory
```powershell
git clone https://github.com/notunderctrl/gpt-3.5-chat-bot.git .
```2. Install all the dependencies
- Using npm
```powershell
npm install
```- Using yarn
```powershell
yarn
```3. Create a new file called `.env` and copy the format from `.env.example` (or you can just rename `.env.example`)
4. Update `.env` with your own credentials.
5. Start your bot
- Using npm
```powershell
npm run start
```- Using yarn
```powershell
yarn start
```