-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
36 lines (26 loc) · 1.04 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from __future__ import annotations
import logging
import os
import traceback
from slack_bolt import App
from slack_bolt.adapter.socket_mode import SocketModeHandler
from slack_sdk.errors import SlackApiError
from slack_bot.helpers import run_with_the_best_model
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
SLACK_APP_TOKEN = os.getenv("SLACK_APP_TOKEN")
SLACK_BOT_TOKEN = os.getenv("SLACK_BOT_TOKEN")
app = App(token=SLACK_BOT_TOKEN)
@app.event("app_mention")
@app.event("message")
def command_handler(body: dict[str, dict[str, str]], context: dict[str, str]) -> None:
try:
logger.info("Received event: %s", body)
run_with_the_best_model(app=app, body=body, context=context)
except SlackApiError as e:
logger.exception("Slack API error: %s", e.response["error"])
except Exception:
logger.exception("Found an error: %s", traceback.extract_stack)
if __name__ == "__main__":
handler = SocketModeHandler(app, SLACK_APP_TOKEN)
handler.start() # type: ignore[no-untyped-call]