From 3945eb676316428cce49beadbe1ec024c25916f4 Mon Sep 17 00:00:00 2001 From: crate Date: Thu, 22 May 2025 16:53:37 -0500 Subject: [PATCH] add wiki --- Dockerfile | 1 + garfpy/wiki.py | 1 + requirements.txt | 1 + 3 files changed, 3 insertions(+) create mode 100644 garfpy/wiki.py diff --git a/Dockerfile b/Dockerfile index 91c45db..8603215 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,5 +12,6 @@ RUN pip3 install discord RUN pip3 install openai RUN pip3 install aiohttp RUN pip3 install requests +RUN pip3 install wikipedia CMD [ "python", "garfmain.py" ] diff --git a/garfpy/wiki.py b/garfpy/wiki.py new file mode 100644 index 0000000..bb375a3 --- /dev/null +++ b/garfpy/wiki.py @@ -0,0 +1 @@ +import wikipedia diff --git a/requirements.txt b/requirements.txt index 1739f04..f269a79 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,3 +2,4 @@ discord.py openai aiohttp requests +wikipedia \ No newline at end of file