UNPKG

ai

Version:

AI SDK by Vercel - build apps like ChatGPT, Claude, Gemini, and more with a single interface for any model using the Vercel AI Gateway or go direct to OpenAI, Anthropic, Google, or any other model provider.

13 lines (11 loc) 244 B
import type { TranscriptionModelV2, TranscriptionModelV3, } from '@ai-sdk/provider'; /** * Transcription model that is used by the AI SDK. */ export type TranscriptionModel = | string | TranscriptionModelV3 | TranscriptionModelV2;