File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ def __init__(
121
121
schema .parameters = non_auth_non_bound_params
122
122
123
123
# Due to how pydantic works, we must initialize the underlying
124
- # StructuredTool class before assigning values to member variables.
124
+ # BaseTool class before assigning values to member variables.
125
125
super ().__init__ (
126
126
name = name ,
127
127
description = schema .description ,
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ def __init__(
46
46
"""
47
47
48
48
# Due to how pydantic works, we must initialize the underlying
49
- # StructuredTool class before assigning values to member variables.
49
+ # BaseTool class before assigning values to member variables.
50
50
super ().__init__ (
51
51
name = async_tool .name ,
52
52
description = async_tool .description ,
@@ -181,8 +181,8 @@ def bind_param(
181
181
parameter.
182
182
183
183
Args:
184
- param_name: The name of the bound parameter. param_value: The value
185
- of the bound parameter, or a callable that
184
+ param_name: The name of the bound parameter.
185
+ param_value: The value of the bound parameter, or a callable that
186
186
returns the value.
187
187
strict: If True, a ValueError is raised if any of the provided bound
188
188
params is not defined in the tool's schema, or requires
You can’t perform that action at this time.
0 commit comments