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.
25 lines (20 loc) • 734 B
text/typescript
import type { TranscriptionResult } from './transcribe-result';
import { transcribe } from './transcribe';
export { transcribe } from './transcribe';
export { streamTranscribe as experimental_streamTranscribe } from './stream-transcribe';
export type {
StreamTranscriptionResult,
TranscriptionStreamPart,
} from './stream-transcribe-result';
export type { TranscriptionResult } from './transcribe-result';
// deprecated exports
/**
* @deprecated Use `transcribe` instead.
*/
const experimental_transcribe = transcribe;
export { experimental_transcribe };
/**
* @deprecated Use `TranscriptionResult` instead.
*/
type Experimental_TranscriptionResult = TranscriptionResult;
export type { Experimental_TranscriptionResult };