feat(core): Implement partial execution for all tool nodes (#15168)

This commit is contained in:
Benjamin Schroth
2025-05-12 12:31:17 +02:00
committed by GitHub
parent d12c7ee87f
commit 8b467e3f56
39 changed files with 1129 additions and 279 deletions

View File

@@ -38,6 +38,7 @@ describe('McpClientTool', () => {
description: 'MyTool does something',
name: 'MyTool',
value: 'MyTool',
inputSchema: { type: 'object', properties: { input: { type: 'string' } } },
},
]);
});

View File

@@ -28,5 +28,6 @@ export async function getTools(this: ILoadOptionsFunctions): Promise<INodeProper
name: tool.name,
value: tool.name,
description: tool.description,
inputSchema: tool.inputSchema,
}));
}