Skip to content

Commit 9712cfa

Browse files
Apply suggestions from code review
Co-authored-by: Eden Zimbelman <[email protected]>
1 parent b59950d commit 9712cfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/english/concepts/message-sending.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ You can have your app's messages stream in to replicate conventional AI chatbot
4949
* [`chat_appendStream`](/reference/methods/chat.appendstream)
5050
* [`chat_stopStream`](/reference/methods/chat.stopstream)
5151

52-
The Python Slack SDK provides a [`chat_stream()`](https://docss.slack.dev/tools/python-slack-sdk/reference/web/client.html#slack_sdk.web.client.WebClient.chat_stream) helper utility to streamline calling these methods. Here's an excerpt from our [Assistant template app](https://github.com/slack-samples/bolt-python-assistant-template/blob/main/listeners/assistant/assistant.py)
52+
The Python Slack SDK provides a [`chat_stream()`](/tools/python-slack-sdk/reference/web/client.html#slack_sdk.web.client.WebClient.chat_stream) helper utility to streamline calling these methods. Here's an excerpt from our [Assistant template app](https://github.com/slack-samples/bolt-python-assistant-template)
5353

5454
```python
5555
streamer = client.chat_stream(
@@ -69,7 +69,7 @@ feedback_block = create_feedback_block()
6969
streamer.stop(blocks=feedback_block)
7070
```
7171

72-
In that example, a [feedback buttons](/reference/block-kit/block-elements/feedback-buttons-element) block element is passed to `streamer.stop` — this provides feedback buttons to the user at the bottom of the message.
72+
In that example, a [feedback buttons](/reference/block-kit/block-elements/feedback-buttons-element) block element is passed to `streamer.stop` to provide feedback buttons to the user at the bottom of the message. Interaction with these buttons will send a block action event to your app to receive the feedback.
7373

7474
```python
7575
def create_feedback_block() -> List[Block]:

0 commit comments

Comments
 (0)