bugfix: azure stt results need to be ordered by confidence level before processing (#92)

This commit is contained in:
Dave Horton
2022-03-31 12:03:55 -04:00
parent f280f9436f
commit d135247500
2 changed files with 4 additions and 2 deletions

View File

@@ -356,7 +356,7 @@ class TaskGather extends Task {
if ('microsoft' === this.vendor) {
const final = evt.RecognitionStatus === 'Success';
if (final) {
const nbest = evt.NBest;
const nbest = evt.NBest.sort((a, b) => b.Confidence - a.Confidence);
evt = {
is_final: true,
alternatives: [