UNPKG

@pinecone-database/pinecone

Version:

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

25 lines (24 loc) 855 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. */ /** * The entailment of a fact. * @export */ export declare const Entailment: { readonly Entailed: "entailed"; readonly Contradicted: "contradicted"; readonly Neutral: "neutral"; }; export type Entailment = typeof Entailment[keyof typeof Entailment]; export declare function EntailmentFromJSON(json: any): Entailment; export declare function EntailmentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Entailment; export declare function EntailmentToJSON(value?: Entailment | null): any;