Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/itachi9797/gpt-3.5-chat-bot
Simple Discord chat bot built using the GPT 3.5 Turbo Model from OpenAI
https://github.com/itachi9797/gpt-3.5-chat-bot
Last synced: about 1 month ago
JSON representation
Simple Discord chat bot built using the GPT 3.5 Turbo Model from OpenAI
- Host: GitHub
- URL: https://github.com/itachi9797/gpt-3.5-chat-bot
- Owner: itachi9797
- License: mit
- Created: 2023-07-21T12:29:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-11-17T20:58:32.000Z (about 1 year ago)
- Last Synced: 2024-01-09T10:56:09.581Z (12 months ago)
- Language: JavaScript
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.
## How to setup
1. Clone the repository to the current directory
```powershell
git clone https://github.com/sikey-dev/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
```