/**
 * A dictionary mapping encoding format names to their embeddings. Used when multiple encoding formats are requested (Cohere-specific).
 */
export type EmbeddingMultiFormat = {
    /**
     * Float encoding format - array of floating point numbers
     */
    float?: number[];
    /**
     * Int8 encoding format - array of 8-bit integers
     */
    int8?: number[];
    /**
     * Uint8 encoding format - array of unsigned 8-bit integers
     */
    uint8?: number[];
    /**
     * Base64 encoding format - base64 encoded string
     */
    base64?: string;
    /**
     * Binary encoding format - array of integers
     */
    binary?: number[];
    /**
     * Ubinary encoding format - array of unsigned integers
     */
    ubinary?: number[];
};
//# sourceMappingURL=embedding-multi-format.d.ts.map