UNPKG

n8n

Version:

n8n Workflow Automation Tool

5 lines (4 loc) 225 B
import type { FetchedPage } from '@n8n/instance-ai'; type GenerateFn = (prompt: string) => Promise<string>; export declare function maybeSummarize(page: FetchedPage, generateFn?: GenerateFn): Promise<FetchedPage>; export {};