/**
 * Pinecone Inference API
 * Pinecone is a vector database that makes it easy to search and retrieve billions of high-dimensional vectors.
 *
 * The version of the OpenAPI document: 2025-01
 * Contact: support@pinecone.io
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { EmbedRequestInputsInner } from './EmbedRequestInputsInner';
/**
 *
 * @export
 * @interface EmbedRequest
 */
export interface EmbedRequest {
    /**
     * The [model](https://docs.pinecone.io/guides/inference/understanding-inference#embedding-models) to use for embedding generation.
     * @type {string}
     * @memberof EmbedRequest
     */
    model: string;
    /**
     * Additional model-specific parameters. Refer to the [model guide](https://docs.pinecone.io/guides/inference/understanding-inference#embedding-models) for available model parameters.
     * @type {{ [key: string]: any; }}
     * @memberof EmbedRequest
     */
    parameters?: {
        [key: string]: any;
    };
    /**
     * List of inputs to generate embeddings for.
     * @type {Array<EmbedRequestInputsInner>}
     * @memberof EmbedRequest
     */
    inputs: Array<EmbedRequestInputsInner>;
}
/**
 * Check if a given object implements the EmbedRequest interface.
 */
export declare function instanceOfEmbedRequest(value: object): boolean;
export declare function EmbedRequestFromJSON(json: any): EmbedRequest;
export declare function EmbedRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmbedRequest;
export declare function EmbedRequestToJSON(value?: EmbedRequest | null): any;
