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: docs/english/concepts/ai-apps.md
+2-11Lines changed: 2 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,11 +28,8 @@ The Agents & AI Apps feature comprises a unique messaging experience for Slack.
28
28
29
29
That being said, using the `Assistant` class will streamline the process. And we already wrote this nice guide for you!
30
30
31
-
<<<<<<< HEAD:docs/english/concepts/ai-apps.md
32
-
=======
33
31
:::info
34
-
You _could_ go it alone and [listen](event-listening) for the `assistant_thread_started`, `assistant_thread_context_changed`, and `message.im` events (see implementation details below) in order to implement the AI features in your app. That being said, using the `Assistant` class will streamline the process. And we already wrote this nice guide for you!
35
-
>>>>>>> origin:docs/content/concepts/ai-apps.md
32
+
You _could_ go it alone and [listen](/bolt-python/event-listening) for the `assistant_thread_started`, `assistant_thread_context_changed`, and `message.im` events (see implementation details below) in order to implement the AI features in your app. That being said, using the `Assistant` class will streamline the process. And we already wrote this nice guide for you!
36
33
:::
37
34
38
35
## The `Assistant` class instance {#assistant-class}
@@ -113,16 +110,10 @@ If you do provide your own `threadContextStore` property, it must feature `get`
113
110
114
111
## Handling a new thread {#handling-a-new-thread}
115
112
116
-
<<<<<<< HEAD:docs/english/concepts/ai-apps.md
117
-
When the user opens a new thread with your AI app, the [`assistant_thread_started`](/reference/events/assistant_thread_started) event will be sent to your app.
118
-
119
-
:::tip[When a user opens an AI app thread while in a channel, the channel info is stored as the thread's `AssistantThreadContext` data. You can grab that info by using the `get_thread_context` utility, as subsequent user message event payloads won't include the channel info.]
120
-
=======
121
-
When the user opens a new thread with your AI-enabled app, the [`assistant_thread_started`](https://docs.slack.dev/reference/events/assistant_thread_started) event will be sent to your app.
113
+
When the user opens a new thread with your AI-enabled app, the [`assistant_thread_started`](/reference/events/assistant_thread_started) event will be sent to your app.
122
114
123
115
:::tip
124
116
When a user opens an app thread while in a channel, the channel info is stored as the thread's `AssistantThreadContext` data. You can grab that info by using the `get_thread_context` utility, as subsequent user message event payloads won't include the channel info.
125
-
>>>>>>> origin:docs/content/concepts/ai-apps.md
126
117
:::
127
118
128
119
### Block Kit interactions in the app thread {#block-kit-interactions}
0 commit comments