UNPKG

ai-utils.js

Version:

Build AI applications, chatbots, and agents with JavaScript and TypeScript.

5 lines (4 loc) 168 B
/** * The `retryNever` strategy never retries a failed API call. */ export declare const retryNever: () => <OUTPUT>(f: () => PromiseLike<OUTPUT>) => Promise<OUTPUT>;