This fork was inspired by Aaron Ng (@localghost)._
Some additions have been made such as adding Google Search and CoinGecko support via Langchain Agents. Also added support for generating images via StabilityAI's Dreamstudio APIs. This also includes Document QnA via ChromaDB, or if you wish, Postgres PGVectors.
The new additions also include Redis Caching support. I've tried using the native LLM Cache, but it isn't clear on what the TTL was. So I decided to stick with Redis, and it gives me more customisation on the TTLs of each data type.
This script creates a Slack bot that uses ChatGPT to respond to direct messages and mentions in a Slack workspace. While you can add QnA, it currently includes connections to Google, Coingecko and DreamStudio via Langchain Agents.
OPENAI_API_KEY
: Your OpenAI API key, which starts with "sk-".SLACK_APP_TOKEN
: Your Slack App Token, which starts with "xapp-".SLACK_BOT_TOKEN
: Your Slack Bot Token, which starts with "xoxb-".SERPER_API_KEY
: Your key to access google serper API on Langchain. Get it from serper.devREDIS_PASSWORD
: Redis cache passwordREDIS_URL
: URL to your Redis serverSTABILITY_KEY
: Stability AI key from Dreamstudio.aiSTABILITY_HOST
: Host to use Stability AI's image generation serversPGVECTOR_CONNECTION_STRING
:"postgresql+psycopg2://username:password@db_url:5432/db_name"
MODEL
: The OpenAI model to use. Can be "gpt-3.5-turbo" or "gpt-4". Default is "gpt-3.5-turbo".PROMPT
: A custom prompt for the bot. Default is a predefined prompt for a friendly company assistant.
- Go to https://api.slack.com/apps?new_app=1.
- Click "Create New App".
- Click "Basic", then name your Slack bot and select a workspace.
- In "Settings" → "Socket Mode", enable both Socket Mode and Event Subscriptions.
- In "Settings" → "Basic Information", install your app to the workspace by following the instructions.
- In "Settings" → "Basic Information", scroll to "App-Level Tokens" and create one with the permission
connections:write
. Set the resulting token that starts withxapp-
as yourSLACK_APP_TOKEN
. - In "Features" → "OAuth and Permissions" → "Scopes", add the following permissions:
app_mentions:read
,channels:history
,channels:read
,chat:write
,chat:write.public
,groups:history
,groups:read
,im:history
,im:read
,mpim:history
,mpim:read
,users:read
,files.write
,files.read
. - In "Features" → "Event Subscriptions" → "Subscribe to Bot Events", add the following bot user events:
app_mentions:read
,message.im
. - In "Features" → "App Home", turn on the "Messages Tab" switch, and enable the
Allow users to send Slash commands and messages from the messages tab
feature. - In "Features" → "OAuth and Permissions", copy the "Bot User OAuth Token" and set it as the
SLACK_BOT_TOKEN
in your environment.
Now your Slack bot should be ready to use!
- Get the Serper keys from https://serper.dev. The key should replace values in SERPER_API_KEY in the .env file.
- Get the Stability AI API Keys by signing up for https://beta.dreamstudio.ai/
- Get the Redis credentials by creating your own instance, or create one from https://upstash.com
- If deploying to a cloud service, check out and reconfigure
setup.sh
andstart.sh
.
- If running locally, install dependencies with
poetry
. - Comment out these two lines in the script:
# from dotenv import load_dotenv
# load_dotenv()
Start the bot and enjoy using it in your Slack workspace.
There are 2 files that you can use to ingest the data needed. ingest_chroma.py - Adds your data into a local ChromaDB and creates a /db/ folder which stores the indexes.
OR
ingest_pg.py - Adds your data into a Supabase Postgres PGVector-supported table.
If you are using PGVectors, you will have update the vectorstore code in both main.py and agent_tools.py to support it.
- Agents are still somewhat unrealiable. You can probably make them better by better describing the prompts.
- ValueErrors still happen sometimes for LLM Outputs. This can be resolved by querying the Bot again and catch via exception handling.