microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
28 lines (26 loc) • 884 B
JavaScript
;
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
//
Object.defineProperty(exports, "__esModule", { value: true });
exports.DisfluencyMode = void 0;
/**
* Disfluency handling options.
*/
var DisfluencyMode;
(function (DisfluencyMode) {
/**
* The Microsoft Speech Service does not remove disfluencies from all results.
*/
DisfluencyMode["Raw"] = "Raw";
/**
* The Microsoft Speech Service removes disfluencies from all results.
*/
DisfluencyMode["Removed"] = "Removed";
/**
* The Microsoft Speech Service tags disfluencies in the phrase result.
*/
DisfluencyMode["Labeled"] = "Labeled";
})(DisfluencyMode = exports.DisfluencyMode || (exports.DisfluencyMode = {}));
//# sourceMappingURL=DisfluencyMode.js.map