service.outputGetter Function

The function to get the output from the AI service response.

Example

Open In Dojo
<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
    service: {
        url: "/api/llm",
        outputGetter: function(response) {
            return response.output;
        }
    }
});
In this article