From 652a7f3e660ec3cb3afaadae9df81a8e7ae2f098 Mon Sep 17 00:00:00 2001 From: Luke Russell Date: Thu, 24 Oct 2024 13:21:01 -0700 Subject: [PATCH] docs: very important grammar --- docs/content/guides/assistants.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guides/assistants.md b/docs/content/guides/assistants.md index 034c0003d..d72ab8f44 100644 --- a/docs/content/guides/assistants.md +++ b/docs/content/guides/assistants.md @@ -10,7 +10,7 @@ This guide focuses on how to implement Agents & Assistants using Bolt. For gener To get started, you'll need to enable the **Agents & Assistants** feature on [the app configuration page](https://api.slack.com/apps). Then, add [`assistant:write`](https://api.slack.com/scopes/assistant:write), [`chat:write`](https://api.slack.com/scopes/chat:write), and [`im:history`](https://api.slack.com/scopes/im:history) to the **bot** scopes on the **OAuth & Permissions** page. Also, make sure to subscribe to [`assistant_thread_started`](https://api.slack.com/events/assistant_thread_started), [`assistant_thread_context_changed`](https://api.slack.com/events/assistant_thread_context_changed), and [`message.im`](https://api.slack.com/events/message.im) events on the **Event Subscriptions** page. -Please note that this feature requires a paid plan. If you don't have a paid workspace for development, you can join the [Developer Program](https://api.slack.com/developer-program) and provision a sandbox with access to all Slack features for free. +This feature requires a paid plan. If you don't have a paid workspace for development, you can join the [Developer Program](https://api.slack.com/developer-program) and provision a sandbox with access to all Slack features for free. ## Examples