service.outputGetter Function
The function to get the output from the AI service response.
Example
<div id="aiprompt"></div>
<script>
$("#aiprompt").kendoAIPrompt({
service: {
url: "/api/llm",
outputGetter: function(response) {
return response.output;
}
}
});