From a71d8bfad8a32d1e9a8aed0c6934094ca5668067 Mon Sep 17 00:00:00 2001 From: Showdown76 <66854264+Showdown76py@users.noreply.github.com> Date: Sat, 29 Jul 2023 01:14:16 +0000 Subject: [PATCH] Renamed tokens.db to tokens.db.example This will prevent from the database being overwritten when pulled from GitHub. --- README.md | 5 +++-- tokens.db => tokens.db.example | Bin 2 files changed, 3 insertions(+), 2 deletions(-) rename tokens.db => tokens.db.example (100%) diff --git a/README.md b/README.md index 2abd0cd..4c4d341 100644 --- a/README.md +++ b/README.md @@ -3,11 +3,12 @@ Alternative to "My AI", by Snapchat, but on Discord. ## Installation Steps ### Preparing your environnement - Create your Discord bot [here](https://discord.com/developers/applications) -- Enable **Members**, **Messages** and **Presence** intents. +- Enable **Members** and **Messages** intents. - Create your OpenAI Developer Account [here](https://platform.openai.com) ### Setting up the bot 1. Install Python >= 3.8.10 2. Install requirements with `python3 -m pip install -U -r requirements.txt` +3. Rename `tokens.db.example` to `tokens.db` 3. Create a `.env` file to setup your environnement variables. ``` MAX_TOKEN_PER_REQUEST = [Maximum tokens per request] (recommended: 1800-2000) @@ -15,4 +16,4 @@ TOKEN = [Your Discord bot's token] OPENAI_API_KEY = [OpenAI Token -- can be found at https://platform.openai.com/account/api-keys] ``` -#### The `tokens.db` database is blank and contains no data. +#### The `tokens.db.example` database is blank and contains no data. diff --git a/tokens.db b/tokens.db.example similarity index 100% rename from tokens.db rename to tokens.db.example