add missing __init__

This commit is contained in:
Sam Groenjes 2023-04-26 15:41:19 -06:00 committed by ParisNeo
parent 6d22be1ba9
commit a886789472
2 changed files with 2 additions and 4 deletions

View File

@ -7,10 +7,7 @@ RUN python3 -m venv venv && . venv/bin/activate
RUN python3 -m pip install --no-cache-dir -r requirements.txt --upgrade pip
COPY ./app.py /srv/app.py
COPY ./pyGpt4All/api.py /srv/pyGpt4All/api.py
COPY ./pyGpt4All/db.py /srv/pyGpt4All/db.py
COPY ./pyGpt4All/config.py /srv/pyGpt4All/config.py
COPY ./pyGpt4All/extension.py /srv/pyGpt4All/extension.py
COPY ./pyGpt4All /srv/pyGpt4All
COPY ./backends /srv/backends
COPY ./static /srv/static
COPY ./templates /srv/templates

1
pyGpt4All/__init__.py Normal file
View File

@ -0,0 +1 @@