/** Format in which the embeddings are encoded. We support two options:
- If not specified (defaults to `null`): the embeddings are represented as lists of floating-point numbers;
- `base64`: the embeddings are compressed to [base64](https://docs.python.org/3/library/base64.html) encodings.
*/
export declare const MultimodalEmbedRequestEncodingFormat: {
readonly Base64: "base64";
};
export type MultimodalEmbedRequestEncodingFormat = (typeof MultimodalEmbedRequestEncodingFormat)[keyof typeof MultimodalEmbedRequestEncodingFormat];