stateString(default: "active")
The current state of the tool call. Valid values are "active", "completed", "awaitingApproval", and "error".
Example - set the state to completed
<div id="toolcall"></div>
<script>
$("#toolcall").kendoToolCall({
label: "fetch_data",
state: "completed"
});
</script>