You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- At the end of one recognized utterance, the service stops processing audio from that request ID and ends the turn. The connection is not closed.
16
+
- Maximum limit for recognition is 20s.
17
+
- Typical Carbon call to invoke is `RecognizeOnceAsync`.
18
+
19
+
**Conversation**
20
+
- Meant for longer running recognitions.
21
+
- Has a segmentation time out value of Y. (Y != X)
22
+
- Will process multiple complete utterances without ending the turn.
23
+
- Will end the turn for too much silence.
24
+
- Carbon will continue with a new request ID and replaying audio as needed.
25
+
- The service will forcibly disconnect after 10 minutes of speech recognition.
26
+
- Carbon will reconnect and replay unacknowledged audio.
27
+
- Invoked in Carbon with `StartContinuousRecognition`.
28
+
29
+
**Dictation**
30
+
- Allows users to specify punctuation by speaking it.
31
+
- Invoked in Carbon by specifying `EnableDictation` on the `SpeechConfig` object regardless of the API call that starts recognition.
32
+
- The 1<sup>st</sup> party cluster returns `speech.fragment` messages for intermediate results, the 3<sup>rd</sup> party return `speech.hypothesis` messages.
0 commit comments