From c8624de35b0047b7012725baebbf8b191168cad2 Mon Sep 17 00:00:00 2001 From: Christopher Hertel Date: Sun, 5 Oct 2025 23:44:49 +0200 Subject: [PATCH] Fix CS in agent-as-tool example --- examples/openai/agent-as-tool.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/openai/agent-as-tool.php b/examples/openai/agent-as-tool.php index 134d6d9aa..978fbfbd1 100644 --- a/examples/openai/agent-as-tool.php +++ b/examples/openai/agent-as-tool.php @@ -13,10 +13,10 @@ use Symfony\AI\Agent\InputProcessor\SystemPromptInputProcessor; use Symfony\AI\Agent\Toolbox\AgentProcessor; use Symfony\AI\Agent\Toolbox\Tool\Agent as AgentTool; +use Symfony\AI\Agent\Toolbox\Toolbox; use Symfony\AI\Agent\Toolbox\ToolFactory\ChainFactory; use Symfony\AI\Agent\Toolbox\ToolFactory\MemoryToolFactory; use Symfony\AI\Agent\Toolbox\ToolFactory\ReflectionToolFactory; -use Symfony\AI\Agent\Toolbox\Toolbox; use Symfony\AI\Platform\Bridge\OpenAi\PlatformFactory; use Symfony\AI\Platform\Message\Message; use Symfony\AI\Platform\Message\MessageBag;