@pinecone-database/pinecone
Version:
This is the official Node.js SDK for [Pinecone](https://www.pinecone.io), written in TypeScript.
44 lines (43 loc) • 1.51 kB
TypeScript
/**
* Pinecone Assistant Control Plane API
* Pinecone Assistant Engine is a context engine to store and retrieve relevant knowledge from millions of documents at scale. This API supports creating and managing 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.
*/
/**
*
* @export
* @interface UpdateAssistant200Response
*/
export interface UpdateAssistant200Response {
/**
*
* @type {string}
* @memberof UpdateAssistant200Response
*/
assistantName?: string;
/**
* Description or directive for the assistant to apply to all responses.
* @type {string}
* @memberof UpdateAssistant200Response
*/
instructions?: string;
/**
*
* @type {object}
* @memberof UpdateAssistant200Response
*/
metadata?: object;
}
/**
* Check if a given object implements the UpdateAssistant200Response interface.
*/
export declare function instanceOfUpdateAssistant200Response(value: object): boolean;
export declare function UpdateAssistant200ResponseFromJSON(json: any): UpdateAssistant200Response;
export declare function UpdateAssistant200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateAssistant200Response;
export declare function UpdateAssistant200ResponseToJSON(value?: UpdateAssistant200Response | null): any;