ai.commandsArray
Defines the shared fast commands for the side panel AI Prompt tool and the inline popup prompt tool. The commands are displayed in the side panel AI Prompt view and the context menu of the inline popup tool.
The commands can be configured separately in the ai.aiPrompt.commands
and ai.inlineAIPrompt.commands
properties.
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
ai: {
commands: [
{
id: "1",
text: "Make the text funnier",
icon: "star",
prompt: (context) => `Make the following text funnier: ${context}`
}
]
}
});
</script>
In this article