Skip to content

Commit 642efcb

Browse files
committed
fix type issue due to langchain update
1 parent 3c35341 commit 642efcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/managers/tools/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export class MCPServerTool<SchemaT extends ToolSchemaBase> extends StructuredToo
3232
}
3333

3434
protected async _call(
35-
_arg: SchemaOutputT<SchemaT>,
35+
_arg: any,
3636
_runManager?: CallbackManagerForToolRun,
3737
_parentConfig?: ToolRunnableConfig,
3838
): Promise<ToolOutputT> {

0 commit comments

Comments
 (0)