17 lines
576 B
JavaScript
17 lines
576 B
JavaScript
|
"use strict";
|
||
|
// File generated from our OpenAPI spec by Stainless.
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
exports.Speech = void 0;
|
||
|
const resource_1 = require("openai/resource");
|
||
|
class Speech extends resource_1.APIResource {
|
||
|
/**
|
||
|
* Generates audio from the input text.
|
||
|
*/
|
||
|
create(body, options) {
|
||
|
return this._client.post('/audio/speech', { body, ...options, __binaryResponse: true });
|
||
|
}
|
||
|
}
|
||
|
exports.Speech = Speech;
|
||
|
(function (Speech) {
|
||
|
})(Speech = exports.Speech || (exports.Speech = {}));
|
||
|
//# sourceMappingURL=speech.js.map
|