File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/toolbox-core/src/toolbox_core Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class ToolboxSyncClient:
29
29
A synchronous client for interacting with a Toolbox service.
30
30
31
31
Provides methods to discover and load tools defined by a remote Toolbox
32
- service endpoint, returning synchronous tool wrappers (`SyncToolboxTool `).
32
+ service endpoint, returning synchronous tool wrappers (`ToolboxSyncTool `).
33
33
It manages an underlying asynchronous `ToolboxClient`.
34
34
"""
35
35
@@ -42,7 +42,7 @@ def __init__(
42
42
url : str ,
43
43
):
44
44
"""
45
- Initializes the SyncToolboxClient .
45
+ Initializes the ToolboxSyncClient .
46
46
47
47
Args:
48
48
url: The base URL for the Toolbox service API (e.g., "http://localhost:8000").
@@ -101,7 +101,7 @@ def load_tool(
101
101
Synchronously loads a tool from the server.
102
102
103
103
Retrieves the schema for the specified tool and returns a callable,
104
- synchronous object (`SyncToolboxTool `) that can be used to invoke the
104
+ synchronous object (`ToolboxSyncTool `) that can be used to invoke the
105
105
tool remotely.
106
106
107
107
Args:
You can’t perform that action at this time.
0 commit comments