File tree Expand file tree Collapse file tree 5 files changed +45
-10
lines changed
Expand file tree Collapse file tree 5 files changed +45
-10
lines changed Original file line number Diff line number Diff line change @@ -5248,11 +5248,18 @@ <h3>Class variables</h3>
52485248 self.channel_id = channel_id
52495249 self.thread_ts = thread_ts
52505250
5251- async def __call__(self, status: str) -> AsyncSlackResponse:
5251+ async def __call__(
5252+ self,
5253+ status: str,
5254+ loading_messages: Optional[List[str]] = None,
5255+ **kwargs,
5256+ ) -> AsyncSlackResponse:
52525257 return await self.client.assistant_threads_setStatus(
5253- status=status,
52545258 channel_id=self.channel_id,
52555259 thread_ts=self.thread_ts,
5260+ status=status,
5261+ loading_messages=loading_messages,
5262+ **kwargs,
52565263 )</ code > </ pre >
52575264</ details >
52585265< div class ="desc "> </ div >
Original file line number Diff line number Diff line change @@ -70,11 +70,18 @@ <h2 class="section-title" id="header-classes">Classes</h2>
7070 self.channel_id = channel_id
7171 self.thread_ts = thread_ts
7272
73- async def __call__(self, status: str) -> AsyncSlackResponse:
73+ async def __call__(
74+ self,
75+ status: str,
76+ loading_messages: Optional[List[str]] = None,
77+ **kwargs,
78+ ) -> AsyncSlackResponse:
7479 return await self.client.assistant_threads_setStatus(
75- status=status,
7680 channel_id=self.channel_id,
7781 thread_ts=self.thread_ts,
82+ status=status,
83+ loading_messages=loading_messages,
84+ **kwargs,
7885 )</ code > </ pre >
7986</ details >
8087< div class ="desc "> </ div >
Original file line number Diff line number Diff line change @@ -81,11 +81,18 @@ <h2 class="section-title" id="header-classes">Classes</h2>
8181 self.channel_id = channel_id
8282 self.thread_ts = thread_ts
8383
84- def __call__(self, status: str) -> SlackResponse:
84+ def __call__(
85+ self,
86+ status: str,
87+ loading_messages: Optional[List[str]] = None,
88+ **kwargs,
89+ ) -> SlackResponse:
8590 return self.client.assistant_threads_setStatus(
86- status=status,
8791 channel_id=self.channel_id,
8892 thread_ts=self.thread_ts,
93+ status=status,
94+ loading_messages=loading_messages,
95+ **kwargs,
8996 )</ code > </ pre >
9097</ details >
9198< div class ="desc "> </ div >
Original file line number Diff line number Diff line change @@ -70,11 +70,18 @@ <h2 class="section-title" id="header-classes">Classes</h2>
7070 self.channel_id = channel_id
7171 self.thread_ts = thread_ts
7272
73- def __call__(self, status: str) -> SlackResponse:
73+ def __call__(
74+ self,
75+ status: str,
76+ loading_messages: Optional[List[str]] = None,
77+ **kwargs,
78+ ) -> SlackResponse:
7479 return self.client.assistant_threads_setStatus(
75- status=status,
7680 channel_id=self.channel_id,
7781 thread_ts=self.thread_ts,
82+ status=status,
83+ loading_messages=loading_messages,
84+ **kwargs,
7885 )</ code > </ pre >
7986</ details >
8087< div class ="desc "> </ div >
Original file line number Diff line number Diff line change @@ -5786,11 +5786,18 @@ <h3>Class variables</h3>
57865786 self.channel_id = channel_id
57875787 self.thread_ts = thread_ts
57885788
5789- def __call__(self, status: str) -> SlackResponse:
5789+ def __call__(
5790+ self,
5791+ status: str,
5792+ loading_messages: Optional[List[str]] = None,
5793+ **kwargs,
5794+ ) -> SlackResponse:
57905795 return self.client.assistant_threads_setStatus(
5791- status=status,
57925796 channel_id=self.channel_id,
57935797 thread_ts=self.thread_ts,
5798+ status=status,
5799+ loading_messages=loading_messages,
5800+ **kwargs,
57945801 )</ code > </ pre >
57955802</ details >
57965803< div class ="desc "> </ div >
You can’t perform that action at this time.
0 commit comments