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/adding-agent-features.md
+69-5Lines changed: 69 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,13 @@
1
1
---
2
-
sidebar_label: Creating an agent
2
+
sidebar_label: Adding agent features
3
3
---
4
4
5
-
# Creating an agent with Bolt for Python
5
+
# Adding agent features with Bolt for Python
6
6
7
7
:::tip[Check out the Support Agent sample app]
8
-
The code snippets throughout this guide are from our [Support Agent sample app](https://github.com/slack-samples/bolt-python-support-agent), Casey, which supports integration with Pydantic, Anthropic, and OpenAI. View our [agent quickstart](/ai/agent-quickstart) to get up and running with Casey. Otherwise, read on for exploration and explanation of agent-focused Bolt features found within Casey.
8
+
The code snippets throughout this guide are from our [Support Agent sample app](https://github.com/slack-samples/bolt-python-support-agent), Casey, which supports integration with Pydantic, Anthropic, and OpenAI.
9
+
10
+
View our [agent quickstart](/ai/agent-quickstart) to get up and running with Casey. Otherwise, read on for exploration and explanation of agent-focused Bolt features found within Casey.
9
11
:::
10
12
11
13
Your agent can utilize features applicable to messages throughout Slack, like [chat streaming](#text-streaming) and [feedback buttons](#adding-and-handling-feedback). They can also [utilize the `Assistant` class](/tools/bolt-python/concepts/assistant-class) for a side-panel view designed with AI in mind.
@@ -14,7 +16,7 @@ If you're unfamiliar with using these feature within Slack, you may want to read
14
16
15
17
## Prerequisites
16
18
17
-
You'll need a Slack app to mold into an agent via in this guide. Follow the [quickstart](/tools/bolt-python/getting-started), and then come back here!
19
+
You'll need a Slack app to mold into an agent. Follow the [quickstart](/tools/bolt-python/getting-started), and then come back here!
18
20
19
21
---
20
22
@@ -379,9 +381,71 @@ def handle_feedback_button(
379
381
380
382
---
381
383
384
+
## Defining agent tools
385
+
386
+
Your agent can perform actions by defining tools. A _tool_ in an agent context is a function that calls an external system.
Copy file name to clipboardExpand all lines: docs/english/concepts/using-the-assistant-class.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# The Assistant class
1
+
# Using the Assistant class
2
2
3
3
:::info[Some features within this guide require a paid plan]
4
4
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.
0 commit comments