UNPKG

@n8n/n8n-nodes-langchain

Version:

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

34 lines (28 loc) 777 B
/** * Xata Node - Version 1 * Use Xata Memory */ export interface LcMemoryXataV1Params { /** * Session ID */ sessionId: string | Expression<string> | PlaceholderValue; /** * The key to use to store session ID in the memory * @displayOptions.show { sessionIdType: ["customKey"] } */ sessionKey?: string | Expression<string> | PlaceholderValue; } export interface LcMemoryXataV1Credentials { xataApi: CredentialReference; } interface LcMemoryXataV1NodeBase { type: '@n8n/n8n-nodes-langchain.memoryXata'; version: 1; credentials?: LcMemoryXataV1Credentials; isTrigger: true; } export type LcMemoryXataV1ParamsNode = LcMemoryXataV1NodeBase & { config: NodeConfig<LcMemoryXataV1Params>; }; export type LcMemoryXataV1Node = LcMemoryXataV1ParamsNode;