You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `ToolboxSyncClient` handles communication with the Toolbox service *synchronously* and produces `ToolboxSyncTool` instances when you load tools. You do not use the `await` keyword when interacting with these synchronous versions.
194
190
195
191
```py
196
192
from toolbox_core import ToolboxSyncClient
@@ -272,7 +268,7 @@ result = auth_tool(input="some input")
272
268
### Binding Parameter Values
273
269
274
270
Pre-set specific parameter values for a tool *before* it's invoked or passed to
275
-
an LLM. Bound values are fixed and won't be requested from the LLM.
271
+
an LLM. Bound parameter values are fixed and won't be requested from the LLM.
0 commit comments