ai.aiPrompt.promptSuggestionsArray
Defines the suggestions for the side panel AI Prompt tool. The suggestions are displayed in the side panel AIPrompt tool.
Example
<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
ai: {
aiPrompt: {
promptSuggestions: [
"Summarize this text",
"Improve grammar",
"Make it more formal",
"Translate to Spanish"
]
}
}
});
</script>
In this article