/** Type of the input text. Defaults to `null`. Other options: `query`, `document`.
- When `input_type` is `null`, the embedding model directly converts your input data into numerical vectors.
- For retrieval/search purposes, we recommend specifying whether your inputs are intended as queries or documents by setting `input_type` to `query` or `document`, respectively.
- When specified, Voyage prepends a specific prompt to your input before vectorizing it, helping the model create more effective vectors tailored for retrieval/search tasks.
*/
export declare const ContextualizedEmbedRequestInputType: {
readonly Query: "query";
readonly Document: "document";
};
export type ContextualizedEmbedRequestInputType = (typeof ContextualizedEmbedRequestInputType)[keyof typeof ContextualizedEmbedRequestInputType];