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 to use paragraph structure checking for responses.
You would want to use this to ensure that responses meet the expected structural requirements in a response, which can be important for certain types of assessments or educational standards, for example.
Important Only available for essay models.
Examples
// Example for evaluate endpoints
{
"options": {
"agents": {
"content": {
"structure_check": {
"enabled": true
}
}
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
agents: {
content: {
structure_check: {
enabled: true
}
}
}
},
}
);
Values
Default false
Type boolean