UNPKG

voyageai

Version:

[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fvoyage-ai%2Ftypescript-sdk) [![npm shield](

15 lines (14 loc) 703 B
/** * 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"; };