UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 313 B
import type { EvalLlmMockHandler } from 'n8n-core'; interface MockHandlerOptions { scenarioHints?: string; globalContext?: string; nodeHints?: Record<string, string>; maxRetries?: number; } export declare function createLlmMockHandler(options?: MockHandlerOptions): EvalLlmMockHandler; export {};