import type * as VoyageAI from "../index.js"; export interface ContextualizedEmbedResponse { /** The object type, which is always "list". */ object?: string; /** An array of contextualized embedding results, one for each input document. */ data?: VoyageAI.ContextualizedEmbedResponseDataItem[]; /** Name of the model used. */ model?: string; usage?: VoyageAI.ContextualizedEmbedResponseUsage; }