UNPKG

@pinecone-database/pinecone

Version:

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

33 lines (32 loc) 1.06 kB
/** * 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. */ import type { EvaluatedFact } from './EvaluatedFact'; /** * The reasoning behind the alignment evaluation. * @export * @interface Reasoning */ export interface Reasoning { /** * The facts that were evaluated. * @type {Array<EvaluatedFact>} * @memberof Reasoning */ evaluatedFacts: Array<EvaluatedFact>; } /** * Check if a given object implements the Reasoning interface. */ export declare function instanceOfReasoning(value: object): boolean; export declare function ReasoningFromJSON(json: any): Reasoning; export declare function ReasoningFromJSONTyped(json: any, ignoreDiscriminator: boolean): Reasoning; export declare function ReasoningToJSON(value?: Reasoning | null): any;