@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
38 lines • 1.16 kB
JavaScript
;
/* tslint:disable */
/* eslint-disable */
/**
* 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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.EntailmentToJSON = exports.EntailmentFromJSONTyped = exports.EntailmentFromJSON = exports.Entailment = void 0;
/**
* The entailment of a fact.
* @export
*/
exports.Entailment = {
Entailed: 'entailed',
Contradicted: 'contradicted',
Neutral: 'neutral'
};
function EntailmentFromJSON(json) {
return EntailmentFromJSONTyped(json, false);
}
exports.EntailmentFromJSON = EntailmentFromJSON;
function EntailmentFromJSONTyped(json, ignoreDiscriminator) {
return json;
}
exports.EntailmentFromJSONTyped = EntailmentFromJSONTyped;
function EntailmentToJSON(value) {
return value;
}
exports.EntailmentToJSON = EntailmentToJSON;
//# sourceMappingURL=Entailment.js.map