UNPKG

@pinecone-database/pinecone

Version:

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

40 lines (39 loc) 1.39 kB
/** * Pinecone Data Plane API * Pinecone is a vector database that makes it easy to search and retrieve billions of high-dimensional vectors. * * 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 { SearchRecordsResponseResult } from './SearchRecordsResponseResult'; import type { SearchUsage } from './SearchUsage'; /** * The records search response. * @export * @interface SearchRecordsResponse */ export interface SearchRecordsResponse { /** * * @type {SearchRecordsResponseResult} * @memberof SearchRecordsResponse */ result: SearchRecordsResponseResult; /** * * @type {SearchUsage} * @memberof SearchRecordsResponse */ usage: SearchUsage; } /** * Check if a given object implements the SearchRecordsResponse interface. */ export declare function instanceOfSearchRecordsResponse(value: object): boolean; export declare function SearchRecordsResponseFromJSON(json: any): SearchRecordsResponse; export declare function SearchRecordsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchRecordsResponse; export declare function SearchRecordsResponseToJSON(value?: SearchRecordsResponse | null): any;