pub struct CreateTranscriptionRequestArgs { /* private fields */ }
Expand description
Builder for CreateTranscriptionRequest
.
Implementations§
source§impl CreateTranscriptionRequestArgs
impl CreateTranscriptionRequestArgs
sourcepub fn file<VALUE: Into<AudioInput>>(&mut self, value: VALUE) -> &mut Self
pub fn file<VALUE: Into<AudioInput>>(&mut self, value: VALUE) -> &mut Self
The audio file to transcribe, in one of these formats: mp3, mp4, mpeg, mpga, m4a, wav, or webm.
sourcepub fn model<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn model<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
ID of the model to use. Only whisper-1
is currently available.
sourcepub fn prompt<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn prompt<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
An optional text to guide the model’s style or continue a previous audio segment. The prompt should match the audio language.
sourcepub fn response_format<VALUE: Into<AudioResponseFormat>>(
&mut self,
value: VALUE
) -> &mut Self
pub fn response_format<VALUE: Into<AudioResponseFormat>>( &mut self, value: VALUE ) -> &mut Self
The format of the transcript output, in one of these options: json, text, srt, verbose_json, or vtt.
sourcepub fn temperature<VALUE: Into<f32>>(&mut self, value: VALUE) -> &mut Self
pub fn temperature<VALUE: Into<f32>>(&mut self, value: VALUE) -> &mut Self
The sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use log probability to automatically increase the temperature until certain thresholds are hit.
sourcepub fn language<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn language<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
The language of the input audio. Supplying the input language in ISO-639-1 format will improve accuracy and latency.
sourcepub fn build(&self) -> Result<CreateTranscriptionRequest, OpenAIError>
pub fn build(&self) -> Result<CreateTranscriptionRequest, OpenAIError>
Trait Implementations§
source§impl Clone for CreateTranscriptionRequestArgs
impl Clone for CreateTranscriptionRequestArgs
source§fn clone(&self) -> CreateTranscriptionRequestArgs
fn clone(&self) -> CreateTranscriptionRequestArgs
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more