Skip to content

Commit 91de836

Browse files
docs: updates old links throughout (#1409)
1 parent 46f0b95 commit 91de836

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/english/concepts/ai-apps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,9 @@ See the [_Adding and handling feedback_](#adding-and-handling-feedback) section
337337

338338
Three Web API methods work together to provide users a text streaming experience:
339339

340-
* the [`chat.startStream`](/reference/methods/chat.startstream) method starts the text stream,
341-
* the [`chat.appendStream`](/reference/methods/chat.appendstream) method appends text to the stream, and
342-
* the [`chat.stopStream`](/reference/methods/chat.stopstream) method stops it.
340+
* the [`chat.startStream`](/reference/methods/chat.startStream) method starts the text stream,
341+
* the [`chat.appendStream`](/reference/methods/chat.appendStream) method appends text to the stream, and
342+
* the [`chat.stopStream`](/reference/methods/chat.stopStream) method stops it.
343343

344344
Since you're using Bolt for Python, built upon the Python Slack SDK, you can use the [`chat_stream()`](https://docs.slack.dev/tools/python-slack-sdk/reference/web/client.html#slack_sdk.web.client.WebClient.chat_stream) utility to streamline all three aspects of streaming in your app's messages.
345345

docs/english/concepts/message-sending.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ def show_datepicker(event, say):
4545

4646
You can have your app's messages stream in to replicate conventional AI chatbot behavior. This is done through three Web API methods:
4747

48-
* [`chat_startStream`](/reference/methods/chat.startstream)
49-
* [`chat_appendStream`](/reference/methods/chat.appendstream)
50-
* [`chat_stopStream`](/reference/methods/chat.stopstream)
48+
* [`chat_startStream`](/reference/methods/chat.startStream)
49+
* [`chat_appendStream`](/reference/methods/chat.appendStream)
50+
* [`chat_stopStream`](/reference/methods/chat.stopStream)
5151

5252
The Python Slack SDK provides a [`chat_stream()`](https://docs.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):
5353

docs/japanese/concepts/select-menu-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
`options()` メソッドは、Slack からのオプション(セレクトメニュー内の動的な選択肢)をリクエストするペイロードをリッスンします。 [`action()` と同様に](/tools/bolt-python/concepts/actions)、文字列型の `action_id` または制約付きオブジェクトが必要です。
44

5-
外部データソースを使って選択メニューをロードするためには、末部に `/slack/events` が付加された URL を Options Load URL として予め設定しておく必要があります。
5+
外部データソースを使って選択メニューをロードするためには、末部に `/slack/events` が付加された URL を Options Load URL として予め設定しておく必要があります。
66

77
`external_select` メニューでは `action_id` を指定することをおすすめしています。ただし、ダイアログを利用している場合、ダイアログが Block Kit に対応していないため、`callback_id` をフィルタリングするための制約オブジェクトを使用する必要があります。
88

0 commit comments

Comments
 (0)