ai.service.urlString
The URL of the AI service to use for generating outputs.
Example - configure AI service URL
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [{ field: "name" }],
dataSource: [{ name: "Jane Doe" }],
toolbar: ["aiAssistant"],
ai: {
service: {
url: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
}
}
});
</script>
In this article