Overview

Sigma can connect to your Slack workspace and answer questions like an expert teammate. You can configure SigmaBot to respond to certain types of messages, in specific channels, and with selected data from your index. Sigma Slack Bot

Setup

You must be an admin of the Slack workspace to set up the Slack bot.
1

Create a new Slack App

Navigate to the Slack App Dashboard and click Create New AppFrom a manifest.Select the workspace you want to connect to Sigma.
2

Use the YAML manifest

Click the YAML tab and paste the following manifest into the box:
YAML Manifest
display_information:
  name: SigmaBot
  description: I help answer questions in Slack!
features:
  app_home:
    home_tab_enabled: false
    messages_tab_enabled: true
    messages_tab_read_only_enabled: false
  bot_user:
    display_name: SigmaBot
    always_online: true
  slash_commands:
    - command: /Sigma
      description: Get back a private answer!
      usage_hint: Put your question here!
      should_escape: false
oauth_config:
  scopes:
    bot:
      - app_mentions:read
      - channels:history
      - channels:join
      - channels:read
      - chat:write
      - commands
      - groups:history
      - groups:read
      - im:history
      - im:read
      - mpim:history
      - reactions:write
      - reactions:read
      - usergroups:read
      - users:read.email
      - users:read
    user:
      - channels:history
      - channels:read
      - groups:read
      - im:read
      - mpim:history
      - mpim:read
      - search:read
settings:
  event_subscriptions:
    bot_events:
      - app_mention
      - message.channels
      - message.groups
      - message.im
      - message.mpim
  interactivity:
    is_enabled: true
  org_deploy_enabled: false
  socket_mode_enabled: true
  token_rotation_enabled: false
Click Create and you will be taken to the app page.
3

Generate an App Token

Scroll down to the App-Level Tokens section and click Generate Token and Scopes.Give your token a name, add the connections:write scope to the app-level token and click Generate. Save this token for later.
You can customize your Slack bot’s name, description, and icon in the Display Information section.
Sigma Slack Bot App Token
4

Install the Slack App

Navigate to the OAuth & Permissions tab, click Install to Workspace, and follow the instructions to install the app.Copy the Bot User OAuth Token and User OAuth Token (Recommended) and save it for later.
Sigma does not currently support token rotation.
Sigma Slack Bot Bot Token
5

Setup Sigma for the Slack Bot

Navigate to the Sigma Admin Panel and select the Slack Bots tab.Enter the Bot Token, App Token, and User Token (Recommended) and click Create!Sigma Slack Bot Sigma Setup
6

Configure the Slack Bot's Behavior

Once your Slack bot is created, you can configure it’s universal behavior through the Default Configuration.You can also set channel-specific behavior using Channel Configurations.Sigma Slack Bot Configuration

Advanced Configuration

There are a set of advanced configuration options available via environment variables that control your Slack bot’s behavior. You can find the full list of configuration options in the Sigma GitHub.
These configuration options are rarely needed and should be used with caution.
Number of retry attempts for generating an answer before failing.Default: 5 (int)
Number of documents shown under “Reference Documents”.Default: 5 (int)
Disable responses that only show “Reference Documents” when the LLM cannot answer.Default: false (bool)
Emoji reaction shown while Sigma considers a message.Default: eyes (str)
Emoji used to suggest that the user may need more help.Default: sos (str)
Visibility for AI answer feedback submitted to SigmaBot. Options: private (only the clicking user), anonymous (public but anonymous), public (public with username).Default: private (str)
If enabled, SigmaBot sends a brief apology message when it cannot find an answer, so users aren’t left wondering.Default: false (bool)
Show brief error explanations when something goes wrong answering a question (useful for debugging).Default: false (bool)
Respond in all channels by default, instead of only those configured in the UI.Default: false (bool)
Maximum questions per minute the bot can answer. Set to 0 or leave unset for uncapped.Default: uncapped (int)
Maximum time in seconds a question will wait in the queue before timing out.Default: 180 (seconds; 3 minutes)
Minutes after which a reminder DM is sent to request feedback on an answer. Set to 0 to disable.Default: 0 (disabled; 0 minutes)
Rephrase Slack user messages before sending to the LLM (may improve clarity for the model).Default: false (bool)
Number of responses SigmaBot can send within a time window. Set to 0 to disable the limit.Default: 5000 (int)
Length of the response limit window in seconds.Default: 86400 (seconds; 24 hours)