Skip to content

Commit c7603f2

Browse files
committed
PR comments resolve
1 parent 5d5338d commit c7603f2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def load_toolset(
132132
Synchronously fetches a toolset and loads all tools defined within it.
133133
134134
Args:
135-
toolset_name: Name of the toolset to load tools.
135+
toolset_name: Name of the toolset to load tools from.
136136
auth_token_getters: A mapping of authentication service names to
137137
callables that return the corresponding authentication token.
138138
bound_params: A mapping of parameter names to bind to specific values or

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ class ToolboxSyncTool:
2626
"""
2727
A synchronous wrapper around an asynchronous ToolboxTool instance.
2828
29-
This class allows calling the underlying async tool's __call__ method
30-
synchronously. It also wraps methods like `add_auth_token_getters` and
29+
This class allows calling the underlying async tool synchronously.
30+
It also proxies methods like `add_auth_token_getters` and
3131
`bind_parameters` to ensure they return new instances of this synchronous
3232
wrapper.
3333
"""
@@ -79,7 +79,7 @@ def __call__(self, *args: Any, **kwargs: Any) -> str:
7979
"""
8080
Synchronously calls the underlying remote tool.
8181
82-
This method blocks until the asynchronous call completes and returns
82+
This method blocks until the tool call completes and returns
8383
the result.
8484
8585
Args:

0 commit comments

Comments
 (0)