@@ -62,8 +62,8 @@ def __init__(
62
62
bound_params: A mapping of parameter names to their bound
63
63
values.
64
64
strict: If True, raises a ValueError if any of the given bound
65
- parameters is missing from the schema or require authentication.
66
- If False, only issues a warning.
65
+ parameters is missing from the schema or requires
66
+ authentication. If False, only issues a warning.
67
67
"""
68
68
69
69
# If the schema is not already a ToolSchema instance, we create one from
@@ -260,8 +260,8 @@ def __create_copy(
260
260
bound values or functions to retrieve the values. These params
261
261
will be merged with the existing bound params.
262
262
strict: If True, raises a ValueError if any of the given bound
263
- parameters is missing from the schema or require authentication.
264
- If False, only issues a warning.
263
+ parameters is missing from the schema or requires
264
+ authentication. If False, only issues a warning.
265
265
266
266
Returns:
267
267
A new AsyncToolboxTool instance that is a deep copy of the current
@@ -361,7 +361,7 @@ def bind_params(
361
361
bound_params: A dictionary of the bound parameter name to the
362
362
value or function of the bound value.
363
363
strict: If True, a ValueError is raised if any of the provided bound
364
- params is not defined in the tool's schema, or require
364
+ params is not defined in the tool's schema, or requires
365
365
authentication. If False, only a warning is issued.
366
366
367
367
Returns:
@@ -371,7 +371,7 @@ def bind_params(
371
371
Raises:
372
372
ValueError: If any of the provided bound params is already bound.
373
373
ValueError: if any of the provided bound params is not defined in
374
- the tool's schema, or require authentication, and strict is
374
+ the tool's schema, or requires authentication, and strict is
375
375
True.
376
376
"""
377
377
0 commit comments