ai.keepOutputHistoryBoolean(default: false)

Configures if the AI Assistant output should be cleared after closing.

Example - configure AI service output getter

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
   columns: [{ field: "name" }],
   dataSource: [{ name: "Jane Doe" }],
   toolbar: ["aiAssistant"],
   ai: {
     autoClose: true,
     keepOutputHistory: false,
     service: {
       url: "https://demos.telerik.com/service/v2/ai/grid/smart-state",
       outputGetter: function(response) {
         return response.messages.join("---");
       }
     }
   }
});
</script>
In this article
ai.keepOutputHistory
Not finding the help you need?
Contact Support