useEnhanced property

  1. @TagNumber(14)
bool useEnhanced

Set to true to use an enhanced model for speech recognition. If use_enhanced is set to true and the model field is not set, then an appropriate enhanced model is chosen if an enhanced model exists for the audio.

If use_enhanced is true and an enhanced version of the specified model does not exist, then the speech is recognized using the standard version of the specified model.

Implementation

@$pb.TagNumber(14)
$core.bool get useEnhanced => $_getBF(12);
  1. @TagNumber(14)
void useEnhanced=(bool v)

Implementation

@$pb.TagNumber(14)
set useEnhanced($core.bool v) {
  $_setBool(12, v);
}