UNPKG

@n8n/n8n-nodes-langchain

Version:

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

25 lines (19 loc) 633 B
/** * Wolfram|Alpha Node - Version 1 * Connects to WolframAlpha's computational intelligence engine. */ export interface LcToolWolframAlphaV1Params { } export interface LcToolWolframAlphaV1Credentials { wolframAlphaApi: CredentialReference; } interface LcToolWolframAlphaV1NodeBase { type: '@n8n/n8n-nodes-langchain.toolWolframAlpha'; version: 1; credentials?: LcToolWolframAlphaV1Credentials; isTrigger: true; } export type LcToolWolframAlphaV1ParamsNode = LcToolWolframAlphaV1NodeBase & { config: NodeConfig<LcToolWolframAlphaV1Params>; }; export type LcToolWolframAlphaV1Node = LcToolWolframAlphaV1ParamsNode;