pull/1008/head
abc 8 months ago
parent 395fbc70e0
commit 518d7c82f4

2
.gitignore vendored

@ -41,5 +41,7 @@ bing.py
bing2.py
.DS_Store
MANIFEST.in
lab/*
lab
# Emacs crap
*~

@ -27,10 +27,10 @@ RUN pip install --upgrade pip && pip install -r requirements.txt
COPY . /app/
# Install additional requirements specific to the interference module/package.
RUN pip install -r interference/requirements.txt
RUN pip install -r etc/interference/requirements.txt
# Expose port 1337
EXPOSE 1337
# Define the default command to run the app using Python's module mode.
CMD ["python", "-m", "interference.app"]
CMD ["python", "-m", "etc.interference.app"]

@ -107,3 +107,7 @@ class Completion:
[{"role": "user", "content": prompt}], stream, **kwargs)
return result if stream else ''.join(result)
if __name__ == '__main__':
print('hi')
Loading…
Cancel
Save