service.headers Object

The headers to send with the AI service request.

Example

Open In Dojo
<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
    service: {
        url: "/api/llm",
        headers: {
            "Authorization": "Bearer token"
        }
    }
});
In this article