File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
packages/toolbox-langchain/tests Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -75,14 +75,15 @@ async def test_aload_toolset_specific(
75
75
76
76
async def test_aload_toolset_all (self , toolbox ):
77
77
toolset = await toolbox .aload_toolset ()
78
- assert len (toolset ) == 6
78
+ assert len (toolset ) == 7
79
79
tool_names = [
80
80
"get-n-rows" ,
81
81
"get-row-by-id" ,
82
82
"get-row-by-id-auth" ,
83
83
"get-row-by-email-auth" ,
84
84
"get-row-by-content-auth" ,
85
85
"search-rows" ,
86
+ "process-data" ,
86
87
]
87
88
for tool in toolset :
88
89
name = tool ._ToolboxTool__core_tool .__name__
@@ -221,14 +222,15 @@ def test_load_toolset_specific(
221
222
222
223
def test_aload_toolset_all (self , toolbox ):
223
224
toolset = toolbox .load_toolset ()
224
- assert len (toolset ) == 6
225
+ assert len (toolset ) == 7
225
226
tool_names = [
226
227
"get-n-rows" ,
227
228
"get-row-by-id" ,
228
229
"get-row-by-id-auth" ,
229
230
"get-row-by-email-auth" ,
230
231
"get-row-by-content-auth" ,
231
232
"search-rows" ,
233
+ "process-data" ,
232
234
]
233
235
for tool in toolset :
234
236
name = tool ._ToolboxTool__core_tool .__name__
You can’t perform that action at this time.
0 commit comments