You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,8 @@ pip install -r requirements.txt
51
51
python3 app.py
52
52
```
53
53
54
+
Start talking to the bot! Start a new DM or thread and click the feedback button when it responds.
55
+
54
56
#### Linting
55
57
```zsh
56
58
# Run flake8 from root directory for linting
@@ -74,8 +76,8 @@ black .
74
76
75
77
Every incoming request is routed to a "listener". This directory groups each listener based on the Slack Platform feature used, so `/listeners/events` handles incoming events, `/listeners/shortcuts` would handle incoming [Shortcuts](https://docs.slack.dev/interactivity/implementing-shortcuts/) requests, and so on.
76
78
77
-
:::info[The `listeners/events` folder is purely educational and demonstrates alternative approaches to implementation]
78
-
These listeners are **not registered** and are not used in the actual application. For the working implementation, refer to `listeners/assistant.py`.
79
+
> [!NOTE]
80
+
> The `listeners/events` folder is purely educational and demonstrates alternative approaches to implementation. These listeners are **not registered** and are not used in the actual application. For the working implementation, refer to `listeners/assistant/assistant.py`.
0 commit comments