/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Cohere from "../index";
export interface EmbedByTypeResponse {
    id: string;
    /** An object with different embedding types. The length of each embedding type array will be the same as the length of the original `texts` array. */
    embeddings: Cohere.EmbedByTypeResponseEmbeddings;
    /** The text entries for which embeddings were returned. */
    texts: string[];
    meta?: Cohere.ApiMeta;
}
