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

25 lines 654 B
import { INodeTypeDescription } from 'n8n-workflow'; import { RoundRobin } from './nodes/RoundRobin/RoundRobin.node'; export { RoundRobin }; export declare const nodeTypes: { class: typeof RoundRobin; description: { displayName: string; name: string; icon: string; group: string[]; version: number; description: string; }; }[]; export declare class RoundRobinNodes { nodeTypes: { roundRobin: { description: INodeTypeDescription; }; roundRobinRecall: { description: INodeTypeDescription; }; }; } //# sourceMappingURL=index.d.ts.map