UNPKG

microsoft-cognitiveservices-speech-sdk

Version:
18 lines (17 loc) 427 B
/** * 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" }