UNPKG

@n8n/n8n-nodes-langchain

Version:

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

47 lines (41 loc) 1.38 kB
/** * Redis Chat Memory Node - Version 1.3 * Stores the chat history in Redis. */ export interface LcMemoryRedisChatV13Params { /** * 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; /** * For how long the session should be stored in seconds. If set to 0 it will not expire. * @default 0 */ sessionTTL?: number | Expression<number>; /** * Context Window Length * @hint How many past interactions the model receives as context * @default 5 */ contextWindowLength?: number | Expression<number>; } export interface LcMemoryRedisChatV13Credentials { redis: CredentialReference; } interface LcMemoryRedisChatV13NodeBase { type: '@n8n/n8n-nodes-langchain.memoryRedisChat'; version: 1.3; credentials?: LcMemoryRedisChatV13Credentials; isTrigger: true; } export type LcMemoryRedisChatV13ParamsNode = LcMemoryRedisChatV13NodeBase & { config: NodeConfig<LcMemoryRedisChatV13Params>; }; export type LcMemoryRedisChatV13Node = LcMemoryRedisChatV13ParamsNode;