functions.do
Version:
A framework and platform for easily creating, managing, evaluating, and iterating on AI functions & object generation
4 lines • 414 B
TypeScript
import { AIConfig, AIFunction, FunctionDefinition, FunctionCallback } from './types';
export declare const AI: <T extends Record<string, FunctionDefinition | FunctionCallback>>(functions: T, config?: AIConfig) => { [K in keyof T]: T[K] extends FunctionDefinition ? AIFunction<any, any> : T[K] extends FunctionCallback ? FunctionCallback : never; };
export declare const ai: any;
//# sourceMappingURL=index.d.ts.map