UNPKG

ai-functions

Version:

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

10 lines 386 B
export declare const MODEL_BEST = "gpt-4o"; export declare const MODEL_FAST = "gpt-4o-mini"; export declare const DEFAULT_MODEL = "gpt-4o"; export declare const FALLBACK_MODEL = "gpt-4o-mini"; export declare const MODELS: { readonly BEST: "gpt-4o"; readonly FAST: "gpt-4o-mini"; }; export type ModelType = typeof MODELS[keyof typeof MODELS]; //# sourceMappingURL=models.d.ts.map