UNPKG

@pinecone-database/pinecone

Version:

This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.

46 lines (45 loc) 1.51 kB
/** * 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-04 * 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 { AssistantFileModel } from './AssistantFileModel'; import type { HighlightModel } from './HighlightModel'; /** * The ReferenceModel describes a single reference in a citation. * @export * @interface ReferenceModel */ export interface ReferenceModel { /** * * @type {AssistantFileModel} * @memberof ReferenceModel */ file?: AssistantFileModel; /** * * @type {Array<number>} * @memberof ReferenceModel */ pages?: Array<number>; /** * * @type {HighlightModel} * @memberof ReferenceModel */ highlight?: HighlightModel | null; } /** * Check if a given object implements the ReferenceModel interface. */ export declare function instanceOfReferenceModel(value: object): boolean; export declare function ReferenceModelFromJSON(json: any): ReferenceModel; export declare function ReferenceModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReferenceModel; export declare function ReferenceModelToJSON(value?: ReferenceModel | null): any;