Skip to content

Commit 6bfd0a6

Browse files
authored
docs: add tools to example tools package page: memory, mem0_memory, cron, slack, speak (#14)
1 parent b212cdd commit 6bfd0a6

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

docs/user-guide/concepts/tools/example-tools-package.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,31 @@ pip install strands-agents-tools
1212

1313
#### RAG & Memory
1414
- [`retrieve`]({{ tools_repo }}/src/strands_tools/retrieve.py): Semantically retrieve data from Amazon Bedrock Knowledge Bases for RAG, memory, and other purposes
15+
- [`memory`]({{ tools_repo }}/src/strands_tools/memory.py): Agent memory persistence in Amazon Bedrock Knowledge Bases
16+
- [`mem0_memory`]({{ tools_repo }}/src/strands_tools/mem0_memory.py): Agent memory and personalization built on top of [Mem0](https://mem0.ai)
1517

1618
#### File Operations
17-
- [`editor`]({{ tools_repo }}/src/strands_tools/editor.py): Advanced file editing operations
19+
- [`editor`]({{ tools_repo }}/src/strands_tools/editor.py): File editing operations like line edits, search, and undo
1820
- [`file_read`]({{ tools_repo }}/src/strands_tools/file_read.py): Read and parse files
1921
- [`file_write`]({{ tools_repo }}/src/strands_tools/file_write.py): Create and modify files
2022

2123
#### Shell & System
2224
- [`environment`]({{ tools_repo }}/src/strands_tools/environment.py): Manage environment variables
2325
- [`shell`]({{ tools_repo }}/src/strands_tools/shell.py): Execute shell commands
26+
- [`cron`]({{ tools_repo }}/src/strands_tools/cron.py): Task scheduling with cron jobs
2427

2528
#### Code Interpretation
2629
- [`python_repl`]({{ tools_repo }}/src/strands_tools/python_repl.py): Run Python code
2730

2831
#### Web & Network
2932
- [`http_request`]({{ tools_repo }}/src/strands_tools/http_request.py): Make API calls, fetch web data, and call local HTTP servers
33+
- [`slack`]({{ tools_repo }}/src/strands_tools/slack.py): Slack integration with real-time events, API access, and message sending
3034

3135
#### Multi-modal
3236
- [`image_reader`]({{ tools_repo }}/src/strands_tools/image_reader.py): Process and analyze images
3337
- [`generate_image`]({{ tools_repo }}/src/strands_tools/generate_image.py): Create AI generated images with Amazon Bedrock
3438
- [`nova_reels`]({{ tools_repo }}/src/strands_tools/nova_reels.py): Create AI generated images with Nova Reels on Amazon Bedrock
39+
- [`speak`]({{ tools_repo }}/src/strands_tools/speak.py): Generate speech from text using macOS say command or Amazon Polly
3540

3641
#### AWS Services
3742
- [`use_aws`]({{ tools_repo }}/src/strands_tools/use_aws.py): Interact with AWS services

docs/user-guide/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ agent("Hello!")
170170

171171
### Identifying a configured model
172172

173-
Strands defaults to the Bedrock model provider using Claude 3.7 Sonnet. The model your agent is using can be retrieved by accessing [`model.config`](/api-reference/types/#strands.types.models.Model.get_config):
173+
Strands defaults to the Bedrock model provider using Claude 3.7 Sonnet. The model your agent is using can be retrieved by accessing [`model.config`](../api-reference/types.md#strands.types.models.Model.get_config):
174174

175175
```python
176176
from strands import Agent

0 commit comments

Comments
 (0)