UNPKG

@pinecone-database/pinecone

Version:

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

32 lines (31 loc) 870 B
/** * Evaluation API * Provides endpoints for evaluating RAG systems using various metrics. * * 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. */ /** * A fact * @export * @interface Fact */ export interface Fact { /** * The content of the fact. * @type {string} * @memberof Fact */ content: string; } /** * Check if a given object implements the Fact interface. */ export declare function instanceOfFact(value: object): boolean; export declare function FactFromJSON(json: any): Fact; export declare function FactFromJSONTyped(json: any, ignoreDiscriminator: boolean): Fact; export declare function FactToJSON(value?: Fact | null): any;