ai-utils.js
Version:
Build AI applications, chatbots, and agents with JavaScript and TypeScript.
9 lines (8 loc) • 340 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.throttleUnlimitedConcurrency = void 0;
/**
* The `throttleUnlimitedConcurrency` strategy does not limit parallel API calls.
*/
const throttleUnlimitedConcurrency = () => (fn) => fn();
exports.throttleUnlimitedConcurrency = throttleUnlimitedConcurrency;