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

Specifies the label configuration for the textarea.

<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
    promptTextArea: {
        label: {
            content: "Enter your prompt",
            floating: true
        }
    }
});
</script>

Specifies the label text content.

<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
    promptTextArea: {
        label: {
            content: "Your AI Prompt"
        }
    }
});
</script>

Specifies whether the label floats above the input.

<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
    promptTextArea: {
        label: {
            content: "Enter your prompt",
            floating: true
        }
    }
});
</script>