UNPKG

ai-functions

Version:

A powerful TypeScript library for building AI-powered applications with template literals and structured outputs

11 lines 345 B
import { createAIFunction } from './create-function'; export function createAIProxy() { return new Proxy({}, { get: (_, functionName) => { return (schema, options = {}) => { return createAIFunction(functionName, schema, options); }; } }); } //# sourceMappingURL=create-proxy.js.map