You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using custom parameters for STT recognize, such as BackgroundAudioSuppression, MaxAlternatives I noticed there is no setter forCharacterInsertionBias.
Possible solution:
// SetCharacterInsertionBias : Allow user to set CharacterInsertionBias
func (_options *RecognizeOptions) SetCharacterInsertionBias(characterInsertionBias float32) *RecognizeOptions {
_options.CharacterInsertionBias = core.Float32Ptr(characterInsertionBias)
return _options
}
The text was updated successfully, but these errors were encountered:
When using custom parameters for STT recognize, such as
BackgroundAudioSuppression
,MaxAlternatives
I noticed there is no setter forCharacterInsertionBias
.Possible solution:
The text was updated successfully, but these errors were encountered: