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