Skip to content

Commit 26a7d13

Browse files
committed
docs: Add singular bind param method to README
1 parent 33947b9 commit 26a7d13

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/toolbox-core/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,10 @@ specific tool instance.
459459
toolbox = ToolboxClient("http://127.0.0.1:5000")
460460
tool = await toolbox.load_tool("my-tool")
461461

462+
bound_tool = tool.bind_param("param", "value")
463+
464+
# OR
465+
462466
bound_tool = tool.bind_params({"param": "value"})
463467
```
464468

0 commit comments

Comments
 (0)