@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
32 lines (31 loc) • 1.04 kB
TypeScript
/**
* 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 basic error response that contains a message.
* @export
* @interface BasicErrorResponse
*/
export interface BasicErrorResponse {
/**
*
* @type {string}
* @memberof BasicErrorResponse
*/
message: string;
}
/**
* Check if a given object implements the BasicErrorResponse interface.
*/
export declare function instanceOfBasicErrorResponse(value: object): boolean;
export declare function BasicErrorResponseFromJSON(json: any): BasicErrorResponse;
export declare function BasicErrorResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BasicErrorResponse;
export declare function BasicErrorResponseToJSON(value?: BasicErrorResponse | null): any;