pub struct CreateSpeechRequest {
pub input: String,
pub instructions: Option<String>,
pub model: Value,
pub response_format: Option<String>,
pub speed: Option<f32>,
pub voice: VoiceIdsShared,
}
Fields§
§input: String
The text to generate audio for. The maximum length is 4096 characters.
instructions: Option<String>
Control the voice of your generated audio with additional instructions. Does not work with tts-1
or tts-1-hd
.
model: Value
One of the available TTS models: tts-1
, tts-1-hd
or gpt-4o-mini-tts
.
response_format: Option<String>
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.
voice: VoiceIdsShared
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.
Trait Implementations§
Source§impl Debug for CreateSpeechRequest
impl Debug for 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>,
Deserialize this value from the given Serde deserializer. Read more
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§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more