From 694feef94b5512ab25631afefe2095aa01ec5d2d Mon Sep 17 00:00:00 2001 From: Harsh Jha <83023263+rapid-killer-9@users.noreply.github.com> Date: Thu, 5 Feb 2026 11:19:09 +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/core/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/en/sdks/JS-sdk/core/index.md b/docs/en/sdks/JS-sdk/core/index.md index 721d76d93c..f81661e33a 100644 --- a/docs/en/sdks/JS-sdk/core/index.md +++ b/docs/en/sdks/JS-sdk/core/index.md @@ -311,11 +311,11 @@ tools loaded in that specific call, without modifying the original tool objects if they were loaded previously. ```javascript -const authTool = await toolbox.loadTool("toolName", {"myAuth": getAuthToken}) +const authTool = await client.loadTool("toolName", {"myAuth": getAuthToken}) // OR -const authTools = await toolbox.loadToolset({"myAuth": getAuthToken}) +const authTools = await client.loadToolset({"myAuth": getAuthToken}) ``` {{< notice note>}}