From d0381156dfb2ae070ea7e65f0f2f83beec2c8d1c Mon Sep 17 00:00:00 2001 From: Sean Walker Date: Fri, 11 Apr 2025 11:38:31 -0500 Subject: [PATCH] Updated the variable name being imported in the documentation to match the agent variables name. --- docs/get-started/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/get-started/quickstart.md b/docs/get-started/quickstart.md index 4c7e25a..47060bf 100644 --- a/docs/get-started/quickstart.md +++ b/docs/get-started/quickstart.md @@ -53,7 +53,7 @@ mkdir multi_tool_agent/ Now create an `__init__.py` file in the folder: ```shell -echo "from . import agent" > multi_tool_agent/__init__.py +echo "from .agent import root_agent" > multi_tool_agent/__init__.py ``` Your `__init__.py` should now look like this: