ai.aiAssistant.outputActionsArray(default: ["copy", "retry"])

An array of action configurations for the output cards in the AI Assistant.

Example - configure output actions

<div id="grid"></div>
<script>
$("#grid").kendoGrid({
   columns: [{ field: "name" }],
   dataSource: [{ name: "Jane Doe" }],
   toolbar: ["aiAssistant"],
   ai: {
     aiAssistant: {
       outputActions: [
         "copy",
         "retry",
         "rating",
         { command: "export", text: "Export", icon: "download" },
         { command: "share", text: "Share", icon: "share" }
       ]
     },
     service: "https://demos.telerik.com/service/v2/ai/grid/smart-state"
   }
});
</script>