From 303b08026b3d92a9e92b79eb1ca9a8c5b5b34207 Mon Sep 17 00:00:00 2001 From: Vlad Riabchenko Date: Mon, 28 Jul 2025 14:47:29 +0200 Subject: [PATCH 1/2] Fix: workflow tool - Created task agent with 0 tools --- src/strands_tools/workflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strands_tools/workflow.py b/src/strands_tools/workflow.py index b8726d13..e72220fb 100644 --- a/src/strands_tools/workflow.py +++ b/src/strands_tools/workflow.py @@ -326,7 +326,7 @@ def _create_task_agent(self, task: Dict) -> Agent: # Configure tools filtered_tools = [] - if task_tools and self.parent_agent and hasattr(self.parent_agent, "tool_registry"): + if isinstance(task_tools, list) and self.parent_agent and hasattr(self.parent_agent, "tool_registry"): # Filter parent agent tools to only include specified tool names available_tools = self.parent_agent.tool_registry.registry for tool_name in task_tools: From b27af22036b5b9d3d0ce8ce66d3e02ddd1b344d1 Mon Sep 17 00:00:00 2001 From: Dean Schmigelski Date: Tue, 2 Sep 2025 17:48:42 -0400 Subject: [PATCH 2/2] trigger GitHub actions