UNPKG

@n8n/n8n-nodes-langchain

Version:

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

36 lines (30 loc) 978 B
/** * Xata Node - Version 1.2 * Use Xata Memory */ export interface LcMemoryXataV12Params { /** * Session ID * @builderHint Use 'Connected Chat Trigger Node' (fromInput) if there is a Chat Trigger node earlier in the workflow. Otherwise use 'Define below' (customKey). * @default fromInput */ sessionIdType?: 'fromInput' | 'customKey' | Expression<string>; /** * The key to use to store session ID in the memory * @displayOptions.show { sessionIdType: ["customKey"] } */ sessionKey?: string | Expression<string> | PlaceholderValue; } export interface LcMemoryXataV12Credentials { xataApi: CredentialReference; } interface LcMemoryXataV12NodeBase { type: '@n8n/n8n-nodes-langchain.memoryXata'; version: 1.2; credentials?: LcMemoryXataV12Credentials; isTrigger: true; } export type LcMemoryXataV12ParamsNode = LcMemoryXataV12NodeBase & { config: NodeConfig<LcMemoryXataV12Params>; }; export type LcMemoryXataV12Node = LcMemoryXataV12ParamsNode;