Skip to content
This repository was archived by the owner on May 21, 2026. It is now read-only.

Commit 642efcb

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)