SpeechSettings

Define behaviors of speech to text detection.

JSON representation
{
  "endpointerSensitivity": integer,
  "noSpeechTimeout": string,
  "useTimeoutBasedEndpointing": boolean,
  "models": {
    string: string,
    ...
  }
}
Fields
endpointerSensitivity

integer

Sensitivity of the speech model that detects the end of speech. Scale from 0 to 100.

noSpeechTimeout

string (Duration format)

Timeout before detecting no speech.

A duration in seconds with up to nine fractional digits, ending with 's'. Example: "3.5s".

useTimeoutBasedEndpointing

boolean

Use timeout based endpointing, interpreting endpointer sensitivy as seconds of timeout value.

models

map (key: string, value: string)

Mapping from language to Speech-to-Text model. The mapped Speech-to-Text model will be selected for requests from its corresponding language. For more information, see Speech models.

An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.