Class: Telnyx::Models::ConnectionNoiseSuppressionDetails

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/telnyx/models/connection_noise_suppression_details.rb

Defined Under Namespace

Modules: Engine

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Internal::Type::BaseModel

==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml

Methods included from Internal::Type::Converter

#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info

Methods included from Internal::Util::SorbetRuntimeSupport

#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type

Constructor Details

#initialize(attenuation_limit: nil, engine: nil) ⇒ Object

Some parameter documentations has been truncated, see Telnyx::Models::ConnectionNoiseSuppressionDetails for more details.

Configuration options for noise suppression. These settings are stored regardless of the noise_suppression value, but only take effect when noise_suppression is not ‘disabled’. If you disable noise suppression and later re-enable it, the previously configured settings will be used.

Parameters:

  • attenuation_limit (Integer) (defaults to: nil)

    The attenuation limit value for the selected engine. Default values vary by engi

  • engine (Symbol, Telnyx::Models::ConnectionNoiseSuppressionDetails::Engine) (defaults to: nil)

    The noise suppression engine to use. ‘denoiser’ is the default engine. ‘deep_fil



# File 'lib/telnyx/models/connection_noise_suppression_details.rb', line 26

Instance Attribute Details

#attenuation_limitInteger?

The attenuation limit value for the selected engine. Default values vary by engine: 0 for ‘denoiser’, 80 for ‘deep_filter_net’, ‘deep_filter_net_large’, and all Krisp engines (‘krisp_viva_tel’, ‘krisp_viva_tel_lite’, ‘krisp_viva_promodel’, ‘krisp_viva_ss’), 100 for ‘quail_voice_focus’.

Returns:

  • (Integer, nil)


13
# File 'lib/telnyx/models/connection_noise_suppression_details.rb', line 13

optional :attenuation_limit, Integer

#engineSymbol, ...

The noise suppression engine to use. ‘denoiser’ is the default engine. ‘deep_filter_net’ and ‘deep_filter_net_large’ are alternative engines with different performance characteristics. Krisp engines (‘krisp_viva_tel’, ‘krisp_viva_tel_lite’, ‘krisp_viva_promodel’, ‘krisp_viva_ss’) provide advanced noise suppression capabilities. ‘quail_voice_focus’ provides Quail-based voice focus noise suppression.



24
# File 'lib/telnyx/models/connection_noise_suppression_details.rb', line 24

optional :engine, enum: -> { Telnyx::ConnectionNoiseSuppressionDetails::Engine }