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

Messages

configuration

The text messages displayed in the prompt send and stop output retrieval buttons.

messages

Object
<div id="inlineaiprompt"></div>
<script>
$("#inlineaiprompt").kendoInlineAIPrompt({
    messages: {
        promptSend: "Send Message",
        stopOutputRetrieval: "Stop Generation"
    }
});
</script>

The text of the prompt context menu that will render the commands.

Default: "Commands Menu"

<div id="inlineaiprompt"></div>
<script>
$("#inlineaiprompt").kendoInlineAIPrompt({
    messages: {
        commandsMenu: "AI Commands"
    }
});
</script>

The text of the default copy output command.

Default: "Copy"

<div id="inlineaiprompt"></div>
<script>
$("#inlineaiprompt").kendoInlineAIPrompt({
    messages: {
        copyOutputAction: "Copy Text"
    }
});
</script>

The text of the default discard output command.

Default: "Discard"

<div id="inlineaiprompt"></div>
<script>
$("#inlineaiprompt").kendoInlineAIPrompt({
    messages: {
        discardOutputAction: "Remove"
    }
});
</script>

The text of the prompt send button that will be used to as aria labels.

Default: "Prompt Send"

<div id="inlineaiprompt"></div>
<script>
$("#inlineaiprompt").kendoInlineAIPrompt({
    messages: {
        promptSend: "Submit Prompt"
    }
});
</script>

The text of the default retry output command.

Default: "Retry"

<div id="inlineaiprompt"></div>
<script>
$("#inlineaiprompt").kendoInlineAIPrompt({
    messages: {
        retryOutputAction: "Try Again"
    }
});
</script>

The text of the stop output retrieval button that will be used to as aria labels.

Default: "Stop Output Retrieval"

<div id="inlineaiprompt"></div>
<script>
$("#inlineaiprompt").kendoInlineAIPrompt({
    messages: {
        stopOutputRetrieval: "Cancel Generation"
    }
});
</script>