UNPKG

@n8n/n8n-nodes-langchain

Version:

![Banner image](https://user-images.githubusercontent.com/10284570/173569848-c624317f-42b1-45a6-ab09-f0ea3c247648.png)

9 lines (8 loc) 280 B
import type { Tool } from '@langchain/core/tools'; export interface ExecutionContext { sessionId: string; messageId?: string; } export interface ExecutionStrategy { executeTool(tool: Tool, args: Record<string, unknown>, context: ExecutionContext): Promise<unknown>; }