Feedback Aide API Evaluation Options
enabled
Using Feedback Aide Agents will result in additional credit usage. For more information, reach out to your Learnosity Customer Success Manager.
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": {
"agents": {
"content": {
"topic_check": {
"enabled": true
}
}
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
agents: {
content: {
topic_check: {
enabled: true
}
}
}
},
}
);
Values
Default true
Type boolean