New to Kendo UI for jQueryStart a free 30-day trial

The commands to display in the prompt view.

<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
    views: [{
        type: "commands",
        promptCommands: [
            { id: "summarize", text: "Summarize", icon: "list-unordered" },
            { id: "translate", text: "Translate", icon: "globe" }
        ]
    }]
});
</script>

The icon name of the command item.

<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
    views: [{
        type: "commands",
        promptCommands: [
            { id: "summarize", text: "Summarize", icon: "list-unordered" },
            { id: "translate", text: "Translate", icon: "globe" }
        ]
    }]
});
</script>

The id of the command item.

<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
   views: [{
        type: "commands",
        promptCommands: [
            { id: "summarize", text: "Summarize", icon: "list-unordered" },
            { id: "translate", text: "Translate", icon: "globe" }
        ]
    }]
});
</script>

The text of the command item.

<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
    views: [{
        type: "commands",
        promptCommands: [
            { id: "summarize", text: "Summarize", icon: "list-unordered" },
            { id: "translate", text: "Translate", icon: "globe" }
        ]
    }]
});
</script>