n8n-nodes-databricks
Version:
Databricks node for n8n
11 lines (10 loc) • 556 B
TypeScript
import type { DynamicStructuredToolInput } from '@langchain/core/tools';
import { DynamicStructuredTool, DynamicTool } from '@langchain/core/tools';
import type { ISupplyDataFunctions } from 'n8n-workflow';
import { ZodObject } from 'zod';
export declare const prepareFallbackToolDescription: (toolDescription: string, schema: ZodObject<any>) => string;
export declare class N8nTool extends DynamicStructuredTool {
private context;
constructor(context: ISupplyDataFunctions, fields: DynamicStructuredToolInput);
asDynamicTool(): DynamicTool;
}