Feedback Aide API Evaluation Options
enabled
Controls whether the topic checking functionality should be used.
You would want to use this to ensure that responses are relevant to the given topic being graded.
Important Only available for essay models.
Examples
// Example for evaluate endpoints
{
"options": {
"topic_check": {
"enabled": true
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
topic_check: {
enabled: true
}
},
}
);
Values
Default true
Type boolean