Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions docs/user-guide/concepts/tools/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,28 +177,6 @@ When models return multiple tool requests, you can control whether they execute

{{ ts_not_supported_code() }}

## Tool Executors

When models return multiple tool requests, you can control whether they execute concurrently or sequentially. Agents use concurrent execution by default, but you can specify sequential execution for cases where order matters:

```python
from strands import Agent
from strands.tools.executors import SequentialToolExecutor

# Concurrent execution (default)
agent = Agent(tools=[weather_tool, time_tool])
agent("What is the weather and time in New York?")

# Sequential execution
agent = Agent(
tool_executor=SequentialToolExecutor(),
tools=[screenshot_tool, email_tool]
)
agent("Take a screenshot and email it to my friend")
```

For more details, see [Tool Executors](executors.md).

## Building & Loading Tools

### 1. Custom Tools
Expand Down