@gluneau/n8n-nodes-venice
Version:
Venice.ai integration for n8n
11 lines (10 loc) • 385 B
TypeScript
import type { ISupplyDataFunctions } from 'n8n-workflow';
type OnFailedAttemptHook = (error: Error & {
code?: string;
statusCode?: number;
}) => Promise<void>;
export declare function makeN8nLlmFailedAttemptHandler(context: ISupplyDataFunctions, extraHandler?: OnFailedAttemptHook): (error: Error & {
code?: string;
statusCode?: number;
}) => Promise<void>;
export {};