UNPKG

ai-utils.js

Version:

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

9 lines (8 loc) 252 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.retryNever = void 0; /** * The `retryNever` strategy never retries a failed API call. */ const retryNever = () => async (f) => f(); exports.retryNever = retryNever;