From aedddeb9aef48b63a427cd550fd0a6f8753e20e0 Mon Sep 17 00:00:00 2001 From: Harsh Jha <83023263+rapid-killer-9@users.noreply.github.com> Date: Thu, 5 Feb 2026 11:05:57 +0530 Subject: [PATCH] Apply suggestion from @gemini-code-assist[bot] Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- docs/en/sdks/JS-sdk/adk/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/sdks/JS-sdk/adk/index.md b/docs/en/sdks/JS-sdk/adk/index.md index 148990e4a4..b086fdf66a 100644 --- a/docs/en/sdks/JS-sdk/adk/index.md +++ b/docs/en/sdks/JS-sdk/adk/index.md @@ -138,7 +138,7 @@ const tool = await toolbox.loadTool("my-tool") Once loaded, tools behave like awaitable JS functions. You invoke them using `await` and pass arguments corresponding to the parameters defined in the tool's configuration within the Toolbox service. ```javascript -const tool = await toolbox.loadTool("my-tool") +const tool = await client.loadTool("my-tool") const result = await tool.runAsync(args: {a: 5, b: 2}) ```