promptSuggestions Array (default: [])

An array of prompt suggestions as strings to display in the prompt view. The suggestions can be clicked to populate the prompt input.

Example

<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
    promptSuggestions: [
        "Act as [actor] and write [format] about [subject] in [100 words]",
        "Suggest post about [subject] that will be used in [social media].",
    ]
});
</script>
In this article