voyageai
Version:
[](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fvoyage-ai%2Ftypescript-sdk) [ • 703 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
/**
* The data type for the embeddings to be returned. Defaults to `float`. Other options: `int8`, `uint8`, `binary`, `ubinary`. `float` is supported for all models. `int8`, `uint8`, `binary`, and `ubinary` are supported by `voyage-3-large` and `voyage-code-3`. Please see our guide for more details about output data types.
*/
export declare type EmbedRequestOutputDtype = "float" | "int8" | "uint8" | "binary" | "ubinary";
export declare const EmbedRequestOutputDtype: {
readonly Float: "float";
readonly Int8: "int8";
readonly Uint8: "uint8";
readonly Binary: "binary";
readonly Ubinary: "ubinary";
};