/**
 * Pinecone Assistant Data Plane API
 * Pinecone Assistant Engine is a context engine to store and retrieve relevant knowledge from millions of documents at scale. This API supports interactions with assistants.
 *
 * 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 { MessageModel } from './MessageModel';
/**
 * Parameters to retrieve context from an assistant.
 * @export
 * @interface ContextRequest
 */
export interface ContextRequest {
    /**
     * The query that is used to generate the context. Exactly one of query or messages should be provided.
     * @type {string}
     * @memberof ContextRequest
     */
    query?: string;
    /**
     * Optionally filter which documents can be retrieved using the following metadata fields.
     * @type {object}
     * @memberof ContextRequest
     */
    filter?: object;
    /**
     * The list of messages to use for generating the context. Exactly one of query or messages should be provided.
     * @type {Array<MessageModel>}
     * @memberof ContextRequest
     */
    messages?: Array<MessageModel>;
    /**
     * The number of context snippets to return. Default is 15.
     * @type {number}
     * @memberof ContextRequest
     */
    topK?: number;
}
/**
 * Check if a given object implements the ContextRequest interface.
 */
export declare function instanceOfContextRequest(value: object): boolean;
export declare function ContextRequestFromJSON(json: any): ContextRequest;
export declare function ContextRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContextRequest;
export declare function ContextRequestToJSON(value?: ContextRequest | null): any;
