Struct async_openai::types::CreateSpeechRequest
source · pub struct CreateSpeechRequest {
pub input: String,
pub model: SpeechModel,
pub voice: Voice,
pub response_format: Option<SpeechResponseFormat>,
pub speed: Option<f32>,
}
Fields§
§input: String
The text to generate audio for. The maximum length is 4096 characters.
model: SpeechModel
One of the available TTS models: tts-1
or tts-1-hd
voice: Voice
The voice to use when generating the audio. Supported voices are alloy
, echo
, fable
, onyx
, nova
, and shimmer
. Previews of the voices are available in the Text to speech guide.
response_format: Option<SpeechResponseFormat>
The format to audio in. Supported formats are mp3, opus, aac, and flac.
speed: Option<f32>
The speed of the generated audio. Select a value from 0.25 to 4.0. 1.0 is the default.
Trait Implementations§
source§impl Clone for CreateSpeechRequest
impl Clone for CreateSpeechRequest
source§fn clone(&self) -> CreateSpeechRequest
fn clone(&self) -> CreateSpeechRequest
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
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
Returns the “default value” for a type. Read more
source§impl PartialEq for CreateSpeechRequest
impl PartialEq for CreateSpeechRequest
source§fn eq(&self, other: &CreateSpeechRequest) -> bool
fn eq(&self, other: &CreateSpeechRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for CreateSpeechRequest
impl Serialize for CreateSpeechRequest
impl StructuralPartialEq for CreateSpeechRequest
Auto Trait Implementations§
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