microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
18 lines (17 loc) • 427 B
TypeScript
/**
* Disfluency handling options.
*/
export declare enum DisfluencyMode {
/**
* The Microsoft Speech Service does not remove disfluencies from all results.
*/
Raw = "Raw",
/**
* The Microsoft Speech Service removes disfluencies from all results.
*/
Removed = "Removed",
/**
* The Microsoft Speech Service tags disfluencies in the phrase result.
*/
Labeled = "Labeled"
}