Apply suggestion from @gemini-code-assist[bot]

Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
This commit is contained in:
Harsh Jha
2026-02-05 11:19:09 +05:30
committed by GitHub
parent 5f243b3d86
commit 694feef94b

View File

@@ -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>}}