@ai-sdk/provider
Version:
17 lines (14 loc) • 393 B
text/typescript
export interface LanguageModelV2ResponseMetadata {
/**
* ID for the generated response, if the provider sends one.
*/
id?: string;
/**
* Timestamp for the start of the generated response, if the provider sends one.
*/
timestamp?: Date;
/**
* The ID of the response model that was used to generate the response, if the provider sends one.
*/
modelId?: string;
}