ai.aiAssistant.speechToTextBoolean|Object
(default: true)
Configures speech-to-text functionality for the AI Assistant prompt input.
Example - enable speech-to-text
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }],
dataSource: [{ name: "Jane Doe" }],
toolbar: ["aiAssistant"],
ai: {
aiAssistant: {
speechToText: {
integrationMode: "webSpeech",
lang: "en-US",
continuous: false
}
},
service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
}
});
</script>
In this article