Feedback Aide API Evaluation Options
min_paragraphs
Specifies the minimum number of paragraphs required in the response. Responses that have less than the specified amount will be flagged as not_scorable.
You would want to use this to flag responses where students have submitted very short or undeveloped essays, for example.
Examples
// Example for evaluate endpoints
{
"options": {
"structure_check": {
"enabled": true,
"min_paragraphs": 3
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
structure_check: {
enabled: true,
min_paragraphs: 3
}
},
}
);
Values
Default 1
Type integer