Feedback Aide API Evaluation Options
enabled
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": {
"structure_check": {
"enabled": true
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
structure_check: {
enabled: true
}
},
}
);
Values
Default false
Type boolean