Skip to content

Commit a4a63c8

Browse files
claude found some stuff to fix
1 parent 3e49461 commit a4a63c8

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

slack_bolt/async_app.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,15 @@ async def command(ack, body, respond):
5959
from .context.set_suggested_prompts.async_set_suggested_prompts import AsyncSetSuggestedPrompts
6060
from .context.get_thread_context.async_get_thread_context import AsyncGetThreadContext
6161
from .context.save_thread_context.async_save_thread_context import AsyncSaveThreadContext
62+
from .context.say_stream.async_say_stream import AsyncSayStream
6263

6364
__all__ = [
6465
"AsyncApp",
6566
"AsyncAck",
6667
"AsyncBoltContext",
6768
"AsyncRespond",
6869
"AsyncSay",
70+
"AsyncSayStream",
6971
"AsyncListener",
7072
"AsyncCustomListenerMatcher",
7173
"AsyncBoltRequest",

slack_bolt/context/base_context.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ class BaseContext(dict):
3838
"set_status",
3939
"set_title",
4040
"set_suggested_prompts",
41+
"say_stream",
4142
]
4243
# Note that these items are not copyable, so when you add new items to this list,
4344
# you must modify ThreadListenerRunner/AsyncioListenerRunner's _build_lazy_request method to pass the values.

0 commit comments

Comments
 (0)