service.outputGetterFunction
The function to get the output from the AI service response.
Example
<div id="inlineaiprompt"></div>
<script>
$("#inlineaiprompt").kendoInlineAIPrompt({
service: {
url: "/api/llm",
outputGetter: function(response) {
return response.output;
}
}
})
</script>
In this article