Feedback Aide API Evaluation Options
min_paragraph_words
Specifies the minimum number of words required to be considered as a paragraph.
You would want to use this to flag where students have not demonstrated basic essay writing skills, such as submitting fragments or short sentences as a paragraph, for example.
Examples
// Example for evaluate endpoints
{
"options": {
"structure_check": {
"enabled": true,
"min_paragraph_words": 10
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
structure_check: {
enabled: true,
min_paragraph_words: 10
}
},
}
);
Values
Default 6
Type integer