UNPKG

@n8n/n8n-nodes-langchain

Version:

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

20 lines (15 loc) 460 B
/** * Calculator Node - Version 1 * Make it easier for AI agents to perform arithmetic */ export interface LcToolCalculatorV1Params { } interface LcToolCalculatorV1NodeBase { type: '@n8n/n8n-nodes-langchain.toolCalculator'; version: 1; isTrigger: true; } export type LcToolCalculatorV1ParamsNode = LcToolCalculatorV1NodeBase & { config: NodeConfig<LcToolCalculatorV1Params>; }; export type LcToolCalculatorV1Node = LcToolCalculatorV1ParamsNode;