Skip to content

Commit

Permalink
Add slack example
Browse files Browse the repository at this point in the history
  • Loading branch information
mudler committed Dec 16, 2023
1 parent 0f953d8 commit 7e3f2cb
Show file tree
Hide file tree
Showing 19 changed files with 1,854 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
db/
models/
config.ini
config.ini
.dockerenv
21 changes: 21 additions & 0 deletions examples/slack/.dockerenv.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
SLACK_APP_TOKEN=xapp-
SLACK_BOT_TOKEN=xoxb-
OPENAI_API_KEY=fake

OPENAI_SYSTEM_TEXT=Default System Text
OPENAI_TIMEOUT_SECONDS=30
OPENAI_MODEL=gpt-3.5-turbo
USE_SLACK_LANGUAGE=true
SLACK_APP_LOG_LEVEL=DEBUG
TRANSLATE_MARKDOWN=false
OPENAI_API_BASE=http://localhost:8080/v1
EMBEDDINGS_MODEL=all-MiniLM-L6-v2
EMBEDDINGS_API_BASE=http://localhost:8080/v1
LOCALAI_API_BASE=http://localhost:8080/v1
TTS_API_BASE=http://localhost:8080/v1
IMAGES_API_BASE=http://localhost:8080/v1
STABLEDIFFUSION_MODEL=dreamshaper
FUNCTIONS_MODEL=gpt-3.5-turbo
LLM_MODEL=gpt-3.5-turbo
TTS_MODEL=en-us-kathleen-low.onnx
PERSISTENT_DIR=/data
17 changes: 17 additions & 0 deletions examples/slack/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM python:3.11.3-slim-buster
WORKDIR /app/
COPY requirements.txt /app/

RUN apt-get update && apt-get install build-essential git -y
RUN pip install -U pip && pip install -r requirements.txt
COPY *.py /app/
COPY *.sh /app/
RUN mkdir /app/app/
COPY app/*.py /app/app/
ENTRYPOINT /app/entrypoint.sh

# docker build . -t your-repo/chat-gpt-in-slack
# export SLACK_APP_TOKEN=xapp-...
# export SLACK_BOT_TOKEN=xoxb-...
# export OPENAI_API_KEY=sk-...
# docker run -e SLACK_APP_TOKEN=$SLACK_APP_TOKEN -e SLACK_BOT_TOKEN=$SLACK_BOT_TOKEN -e OPENAI_API_KEY=$OPENAI_API_KEY -it your-repo/chat-gpt-in-slack
21 changes: 21 additions & 0 deletions examples/slack/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) Slack Technologies, LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Empty file added examples/slack/app/__init__.py
Empty file.
Loading

0 comments on commit 7e3f2cb

Please sign in to comment.