UNPKG

ai-functions

Version:

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

7 lines 223 B
import { OpenAIModel } from '@ai-sdk/openai'; export type Model = string | OpenAIModel; export interface ExtendedOpenAIModel extends OpenAIModel { type: 'openai'; model: string; } //# sourceMappingURL=model.d.ts.map