pub struct CreateSpeechRequest {
pub model: String,
pub input: String,
pub voice: Voice,
pub response_format: Option<SpeechResponseFormat>,
pub speed: Option<f32>,
}Expand description
Request for creating speech from text.
§Example
use portkey_sdk::model::{CreateSpeechRequest, Voice, SpeechResponseFormat};
let request = CreateSpeechRequest {
model: "tts-1".to_string(),
input: "The quick brown fox jumped over the lazy dog.".to_string(),
voice: Voice::Alloy,
response_format: Some(SpeechResponseFormat::Mp3),
speed: Some(1.0),
};Fields§
§model: StringTTS model to use (e.g., “tts-1” or “tts-1-hd”)
input: StringThe text to generate audio for.
Maximum length is 4096 characters.
voice: VoiceThe voice to use for generation.
response_format: Option<SpeechResponseFormat>The format for the audio output.
speed: Option<f32>The speed of the generated audio (0.25 to 4.0).
Default is 1.0.
Trait Implementations§
Source§impl Clone for CreateSpeechRequest
impl Clone for CreateSpeechRequest
Source§fn clone(&self) -> CreateSpeechRequest
fn clone(&self) -> CreateSpeechRequest
Returns a duplicate 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<'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