Class TranscriptionSessionUpdate.Session.InputAudioNoiseReduction
-
- All Implemented Interfaces:
public final class TranscriptionSessionUpdate.Session.InputAudioNoiseReduction
Configuration for input audio noise reduction. This can be set to
null
to turn off. Noise reduction filters audio added to the input audio buffer before it is sent to VAD and the model. Filtering the audio can improve VAD and turn detection accuracy (reducing false positives) and model performance by improving perception of the input audio.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
TranscriptionSessionUpdate.Session.InputAudioNoiseReduction.Builder
A builder for InputAudioNoiseReduction.
-
Method Summary
Modifier and Type Method Description final Optional<NoiseReductionType>
type()
Type of noise reduction. final JsonField<NoiseReductionType>
_type()
Returns the raw JSON value of type. final Map<String, JsonValue>
_additionalProperties()
final TranscriptionSessionUpdate.Session.InputAudioNoiseReduction.Builder
toBuilder()
final TranscriptionSessionUpdate.Session.InputAudioNoiseReduction
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static TranscriptionSessionUpdate.Session.InputAudioNoiseReduction.Builder
builder()
Returns a mutable builder for constructing an instance of InputAudioNoiseReduction. -
-
Method Detail
-
type
final Optional<NoiseReductionType> type()
Type of noise reduction.
near_field
is for close-talking microphones such as headphones,far_field
is for far-field microphones such as laptop or conference room microphones.
-
_type
final JsonField<NoiseReductionType> _type()
Returns the raw JSON value of type.
Unlike type, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final TranscriptionSessionUpdate.Session.InputAudioNoiseReduction.Builder toBuilder()
-
validate
final TranscriptionSessionUpdate.Session.InputAudioNoiseReduction validate()
-
builder
final static TranscriptionSessionUpdate.Session.InputAudioNoiseReduction.Builder builder()
Returns a mutable builder for constructing an instance of InputAudioNoiseReduction.
-
-
-
-