pub struct CreateSpeechRequest {
pub input: String,
pub model: SpeechModel,
pub voice: Voice,
pub instructions: Option<String>,
pub response_format: Option<SpeechResponseFormat>,
pub speed: Option<f32>,
pub stream_format: Option<StreamFormat>,
}audio-types only.Fields§
§input: StringThe text to generate audio for. The maximum length is 4096 characters.
model: SpeechModelOne of the available TTS models: tts-1,
tts-1-hd or gpt-4o-mini-tts.
voice: VoiceThe voice to use when generating the audio. Supported voices are alloy, ash, coral, echo, fable, onyx, nova, sage, shimmer and verse.
The voice to use when generating the audio. Supported voices are alloy, ash, ballad,
coral, echo, fable, onyx, nova, sage, shimmer, and verse. Previews of the voices
are available in the Text to speech guide.
instructions: Option<String>Control the voice of your generated audio with additional instructions.
Does not work with tts-1 or tts-1-hd.
response_format: Option<SpeechResponseFormat>The format to audio in. Supported formats are mp3, opus, aac, flac, wav, and pcm.
speed: Option<f32>The speed of the generated audio. Select a value from 0.25 to 4.0. 1.0 is the default.
stream_format: Option<StreamFormat>The format to stream the audio in. Supported formats are sse and audio. sse is not
supported for tts-1 or tts-1-hd.
Trait Implementations§
Source§impl Clone for CreateSpeechRequest
impl Clone for CreateSpeechRequest
Source§fn clone(&self) -> CreateSpeechRequest
fn clone(&self) -> CreateSpeechRequest
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for CreateSpeechRequest
impl Debug for CreateSpeechRequest
Source§impl Default for CreateSpeechRequest
impl Default for CreateSpeechRequest
Source§fn default() -> CreateSpeechRequest
fn default() -> CreateSpeechRequest
Source§impl<'de> Deserialize<'de> for CreateSpeechRequest
impl<'de> Deserialize<'de> for CreateSpeechRequest
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for CreateSpeechRequest
impl PartialEq for CreateSpeechRequest
Source§impl Serialize for CreateSpeechRequest
impl Serialize for CreateSpeechRequest
impl StructuralPartialEq for CreateSpeechRequest
Auto Trait Implementations§
impl Freeze for CreateSpeechRequest
impl RefUnwindSafe for CreateSpeechRequest
impl Send for CreateSpeechRequest
impl Sync for CreateSpeechRequest
impl Unpin for CreateSpeechRequest
impl UnwindSafe for CreateSpeechRequest
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
clone_to_uninit)