ai-functions
Version:
A powerful TypeScript library for building AI-powered applications with template literals and structured outputs
5 lines • 335 B
TypeScript
import type { Queue } from '../types';
import type { AIFunctionOptions } from '../types';
export declare function createQueue(options: AIFunctionOptions): Queue | undefined;
export declare function queueGenerator<T>(generator: () => AsyncGenerator<T>, queue: Queue | undefined): AsyncGenerator<T>;
//# sourceMappingURL=manager.d.ts.map