ai.aiAssistantWindow.titleObject|String|Booleandefault: "AI Assistant"

The text in the title bar of the AI AssistantWindow. If set to false, the AI AssistantWindow will be displayed without a title bar.

Example - set AI AssistantWindow title

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
   columns: [{ field: "name" }],
   dataSource: [{ name: "Jane Doe" }],
   toolbar: ["aiAssistant"],
   ai: {
     aiAssistantWindow: {
       title: "Grid AI Assistant"
     },
     service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
   }
});
</script>