Skip to content

Commit 9b8776f

Browse files
committed
fix toolbox sync client and tool name
1 parent e3272ae commit 9b8776f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/toolbox-core/src/toolbox_core/sync_client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class ToolboxSyncClient:
2929
A synchronous client for interacting with a Toolbox service.
3030
3131
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`).
3333
It manages an underlying asynchronous `ToolboxClient`.
3434
"""
3535

@@ -42,7 +42,7 @@ def __init__(
4242
url: str,
4343
):
4444
"""
45-
Initializes the SyncToolboxClient.
45+
Initializes the ToolboxSyncClient.
4646
4747
Args:
4848
url: The base URL for the Toolbox service API (e.g., "http://localhost:8000").
@@ -101,7 +101,7 @@ def load_tool(
101101
Synchronously loads a tool from the server.
102102
103103
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
105105
tool remotely.
106106
107107
Args:

0 commit comments

Comments
 (0)