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.28 kB
/** * Pinecone Assistant Data Plane API * Pinecone Assistant Engine is a context engine to store and retrieve relevant knowledge from millions of documents at scale. This API supports interactions with assistants. * * 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 { AssistantFileModel } from './AssistantFileModel'; /** * The list of files that exist in the assistant * @export * @interface ListFiles200Response */ export interface ListFiles200Response { /** * * @type {Array<AssistantFileModel>} * @memberof ListFiles200Response */ files?: Array<AssistantFileModel>; } /** * Check if a given object implements the ListFiles200Response interface. */ export declare function instanceOfListFiles200Response(value: object): boolean; export declare function ListFiles200ResponseFromJSON(json: any): ListFiles200Response; export declare function ListFiles200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListFiles200Response; export declare function ListFiles200ResponseToJSON(value?: ListFiles200Response | null): any;