ai.aiAssistant.speechToText.integrationModeString(default: "webSpeech")

Specifies the integration mode for speech recognition. Available modes: "webSpeech", "none".

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: {
        integrationMode: "webSpeech"
      }
    }
  }
});
</script>