From 39f76ab49a9baeb8291fde7c763d4cab528848b6 Mon Sep 17 00:00:00 2001 From: principle105 Date: Wed, 7 Sep 2022 23:09:32 -0400 Subject: [PATCH] removed --- .env.example | 15 --------------- .gitignore | 1 - README.md | 4 ++++ 3 files changed, 4 insertions(+), 16 deletions(-) delete mode 100644 .env.example diff --git a/.env.example b/.env.example deleted file mode 100644 index d60a345..0000000 --- a/.env.example +++ /dev/null @@ -1,15 +0,0 @@ -# Storage -STORAGE_DIR= - -# Discord Bot -TOKEN= -CHANNEL_ID= -GUILD_ID= - -# General -LEARN= - -# Responses -MIN_SCORE= -SCORE_THRESHOLD= -MESH_ASSOCIATION= diff --git a/.gitignore b/.gitignore index d0d5157..6b0adaa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,5 @@ storage/* !storage/.gitkeep -.env __pycache__/ .DS_Store .venv diff --git a/README.md b/README.md index bbd49f5..5786a78 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,10 @@ pip install thomasthechatbot ```py from ttc import Chatbot, Context +from ttc.utils import download_nltk_data + +# Only needs to be run once +download_nltk_data() ctx = Context()