Skip to content

Commit f972f49

Browse files
links
1 parent 6f04bb5 commit f972f49

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/english/concepts/message-sending.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,4 @@ const feedbackBlock = {
120120
};
121121
```
122122

123-
Read more about streaming messages in the [_Using AI in Apps_](/tools/bolt-js/concepts/ai-apps) guide.
123+
Read more about streaming messages in the [_Adding agent features_](/tools/bolt-js/adding-agent-features) guide.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sidebar_label: Building an App
33
---
44

5-
# Building an app with Bolt for JavaScript
5+
# Creating an app with Bolt for JavaScript
66

77
This guide will walk you through creating and using a Slack app built with Bolt for JavaScript.
88

docs/english/tutorials/ai-assistant.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ export const openai = new OpenAI({
155155
});
156156
```
157157

158-
In the `listeners/assistant/index.js` file, we initialize the Bolt Assistant class. The Assistant class is a [Bolt feature](/tools/bolt-js/concepts/ai-apps) that simplifies handling incoming events related to the app assistant.
158+
In the `listeners/assistant/index.js` file, we initialize the Bolt Assistant class. The Assistant class is a [Bolt feature](/tools/bolt-js/concepts/using-the-assistant-class) that simplifies handling incoming events related to the app assistant.
159159

160160
```js
161161
import { Assistant } from '@slack/bolt';
@@ -490,7 +490,7 @@ This sample app uses Socket Mode to receive events. This is great for developing
490490

491491
### Learn more {#learn}
492492

493-
➡️ Read more about Bolt support for apps using platform AI features in the documentation [here](/tools/bolt-js/concepts/ai-apps).
493+
➡️ Read more about Bolt support for apps using platform AI features in the documentation [here](/tools/bolt-js/concepts/adding-agent-features).
494494

495495
➡️ Level up your AI game after reading through the [usage guide](/ai/developing-ai-apps) and [Best practices for AI feature-enabled apps](/ai/ai-apps-best-practices).
496496

docs/english/tutorials/code-assistant.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ This is the meat of our app! Here's a breakdown of what we've added:
376376

377377
* `DEFAULT_SYSTEM_CONTENT` is a set of instructions for the model. Think of it as setting the scene in the play that is the interaction between your users and the AI model; it is the context for the role that the model will be playing.
378378
* `convertMarkdownToSlack` is a function that converts traditional markdown to the markdown that Slack uses (which is different). Alternatively, you could send the model's response through the [markdown block](/reference/block-kit/blocks/markdown-block) to achieve the same result.
379-
* `assistant` is an instance of the [`Assistant` class](/tools/bolt-js/concepts/ai-apps#the-assistant-class-instance); this sets up the suggested prompts that the user sees in the split-view container upon opening your app.
379+
* `assistant` is an instance of the [`Assistant` class](/tools/bolt-js/concepts/using-the-assistant-class); this sets up the suggested prompts that the user sees in the split-view container upon opening your app.
380380
* `userMessage` is the handler that takes care of the fiddly bits around getting the thread history, preparing the structure of the messages for processing in a way that the model is expecting, interacting with the model, and responding to the user.
381381
* `app.function` sets up the custom function that can be used to achieve the same result of `userMessage` but as a custom step in a workflow built in Workflow Builder 🎉 This is the implementation logic of the custom workflow step we saw created by the manifest in the app settings. We use the [`conversations.history`](/reference/methods/conversations.history) method to find the message where the emoji reaction was placed, then send that to the model as the question.
382382

0 commit comments

Comments
 (0)