We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ca005b commit b1c6171Copy full SHA for b1c6171
src/resources/audio/speech.ts
@@ -35,9 +35,13 @@ export interface SpeechCreateParams {
35
voice: 'alloy' | 'echo' | 'fable' | 'onyx' | 'nova' | 'shimmer';
36
37
/**
38
- * The format to audio in. Supported formats are `mp3`, `opus`, `aac`, and `flac`.
+ * The format to return audio in. Supported formats are `mp3`, `opus`, `aac`,
39
+ * `flac`, `pcm`, and `wav`.
40
+ *
41
+ * The `pcm` audio format, similar to `wav` but without a header, utilizes a 24kHz
42
+ * sample rate, mono channel, and 16-bit depth in signed little-endian format.
43
*/
- response_format?: 'mp3' | 'opus' | 'aac' | 'flac';
44
+ response_format?: 'mp3' | 'opus' | 'aac' | 'flac' | 'pcm' | 'wav';
45
46
47
* The speed of the generated audio. Select a value from `0.25` to `4.0`. `1.0` is
0 commit comments