/** * 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. */ /** * * @export * @interface TurnDetection */ export interface TurnDetection { /** * * @type {string} * @memberof TurnDetection */ type?: string | null; /** * * @type {number} * @memberof TurnDetection */ threshold?: number | null; /** * * @type {number} * @memberof TurnDetection */ prefixPaddingMs?: number | null; /** * * @type {number} * @memberof TurnDetection */ silenceDurationMs?: number | null; /** * * @type {boolean} * @memberof TurnDetection */ createResponse?: boolean | null; /** * * @type {boolean} * @memberof TurnDetection */ interruptResponse?: boolean | null; } /** * Check if a given object implements the TurnDetection interface. */ export declare function instanceOfTurnDetection(value: object): value is TurnDetection; export declare function TurnDetectionFromJSON(json: any): TurnDetection; export declare function TurnDetectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): TurnDetection; export declare function TurnDetectionToJSON(json: any): TurnDetection; export declare function TurnDetectionToJSONTyped(value?: TurnDetection | null, ignoreDiscriminator?: boolean): any;