updatePromptOutputContent
Updates the prompt output content.
Important: Applicable when the
isStreaming
configuration is explicitly set totrue
.
Parameters
content String
The content that will be passed onto the output response card.
Example
<div id="inlineaiprompt"></div>
<script>
var inlineAiPrompt = $("#inlineaiprompt").kendoInlineAIPrompt({
isStreaming: true
}).data("kendoInlineAIPrompt");
inlineAiPrompt.updatePromptOutputContent("Updated response content");
</script>
In this article