ai.aiAssistant.promptOutputs.idString
The id of the prompt output. If none is provided, the id will be generated as a kendo.guid().
Example
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "productName" },
{ field: "category" }
],
dataSource: [
{ productName: "Tea", category: "Beverages" },
{ productName: "Coffee", category: "Beverages" }
],
ai: {
aiAssistant: {
promptOutputs: [
{
id: "output-1",
prompt: "Generate marketing text",
output: "This is the generated marketing content."
}
]
}
}
});
</script>
In this article