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