/** * ChatGPT Function * Backend for Azure OpenAI integrations * * The version of the OpenAPI document: v1.0.0 * * * 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 { ModelParameters } from './ModelParameters'; /** * * @export * @interface Tool */ export interface Tool { /** * * @type {string} * @memberof Tool */ name?: string | null; /** * * @type {string} * @memberof Tool */ description?: string | null; /** * * @type {ModelParameters} * @memberof Tool */ parameters?: ModelParameters | null; /** * * @type {string} * @memberof Tool */ type?: string | null; } /** * Check if a given object implements the Tool interface. */ export declare function instanceOfTool(value: object): value is Tool; export declare function ToolFromJSON(json: any): Tool; export declare function ToolFromJSONTyped(json: any, ignoreDiscriminator: boolean): Tool; export declare function ToolToJSON(json: any): Tool; export declare function ToolToJSONTyped(value?: Tool | null, ignoreDiscriminator?: boolean): any;