Feedback Aide API Events
feedback:progress
Fired every time we receive the generated score, feedback streaming data from our server.
This event will be fired multiple times depending on the number of rubric’s criteria items.
You would want to be notified about this event firing, because you might want to update your application custom UI to match the received feedback progressively, for example.
Examples
feedbackSession.on('feedback:progress', function (data) {
console.log(data)
});
Callback arguments
-
data object
-
type string
-
criteria string
-
level string
-
score number
-
comment string
-