UNPKG

n8n-nodes-roundrobin

Version:

n8n node to store and retrieve messages in a round-robin fashion, particularly for LLM conversation loops with multiple personas

9 lines 561 B
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow'; export declare class RoundRobin implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; private static handleBinaryStorageExecution; private static getMemoryIdParameter; searchConversationMemories(this: ILoadOptionsFunctions, filter?: string): Promise<INodePropertyOptions[]>; } //# sourceMappingURL=RoundRobin.node.d.ts.map