-
Notifications
You must be signed in to change notification settings - Fork 349
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
139 changed files
with
5,116 additions
and
8,211 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
## SETUP | ||
it doesn't take much to run the slackbot locally | ||
|
||
from a fresh environment you can do: | ||
```console | ||
# install marvin and slackbot dependencies | ||
pip install git+https://github.com/PrefectHQ/marvin.git fastapi cachetools | ||
|
||
# set necessary env vars | ||
cat ~/.marvin/.env | ||
│ File: /Users/nate/.marvin/.env | ||
┼────────────────────────────────────── | ||
│ MARVIN_OPENAI_API_KEY=sk-xxx | ||
│ MARVIN_SLACK_API_TOKEN=xoxb-xxx | ||
│ | ||
│ MARVIN_OPENAI_ORGANIZATION=org-xx | ||
│ MARVIN_LOG_LEVEL=DEBUG | ||
│ | ||
│ MARVIN_CHROMA_SERVER_HOST=localhost | ||
│ MARVIN_CHROMA_SERVER_HTTP_PORT=8000 | ||
│ MARVIN_GITHUB_TOKEN=ghp_xxx | ||
``` | ||
|
||
### hook up to slack | ||
- create a slack app | ||
- add a bot user, adding as many scopes as you want | ||
- set event subscription url e.g. https://{NGROK_SUBDOMAIN}.ngrok.io/chat | ||
|
||
see ngrok docs for easiest start https://ngrok.com/docs/getting-started/ | ||
|
||
tl;dr: | ||
```console | ||
brew install ngrok/ngrok/ngrok | ||
ngrok http 4200 # optionally, --subdomain $NGROK_SUBDOMAIN | ||
python cookbook/slackbot/start.py # in another terminal | ||
``` | ||
|
||
#### test it out | ||
|
||
<img width="719" alt="image" src="https://github.com/PrefectHQ/marvin/assets/31014960/a5948f7f-9aeb-4df0-b536-d61bb57dd1ab"> | ||
|
||
to deploy this to cloudrun, see: | ||
- [Dockerfile.slackbot](/cookbook/slackbot/Dockerfile.slackbot) | ||
- [image build CI](/.github/workflows/image-build-and-push-community.yaml) |
Oops, something went wrong.