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.
23 lines (20 loc) • 498 B
text/typescript
/**
* Response metadata for speech translation model calls.
*
* Experimental: part of the experimental speech translation modality and may
* change in patch releases.
*/
export type SpeechTranslationModelResponseMetadata = {
/**
* Timestamp for the start of the generated response.
*/
timestamp: Date;
/**
* The ID of the response model that was used to generate the response.
*/
modelId: string;
/**
* Response headers.
*/
headers?: Record<string, string>;
};