From f6325b1b503725b81461fdc40f88c2f31a55cd8d Mon Sep 17 00:00:00 2001 From: Girish Raman Date: Thu, 29 Jan 2026 21:50:56 -0800 Subject: [PATCH] Remove redundant Tool Executors section from user guide Removed redundant section on Tool Executors and example code. --- docs/user-guide/concepts/tools/index.md | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/docs/user-guide/concepts/tools/index.md b/docs/user-guide/concepts/tools/index.md index d69eb1ca..c7abc3a3 100644 --- a/docs/user-guide/concepts/tools/index.md +++ b/docs/user-guide/concepts/tools/index.md @@ -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