ai.aiAssistant.speechToText.maxAlternativesNumber
(default: 1)
Specifies the maximum number of alternatives to return from speech recognition.
Example
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "productName" },
{ field: "category" }
],
dataSource: [
{ productName: "Tea", category: "Beverages" },
{ productName: "Coffee", category: "Beverages" }
],
ai: {
aiAssistant: {
speechToText: {
maxAlternatives: 3
}
}
}
});
</script>
In this article