Feedback Aide API Evaluation Options
min_bibliography_citations
Specifies the minimum number of required citations in the bibliography or works cited section. Responses with less than the required number will be flagged as not_scorable.
You would want to use this to skip grading and flag responses that do not include the expected number of citations.
Examples
// Example for evaluate endpoints
{
"options": {
"citation_check": {
"enabled": true,
"min_bibliography_citations": 3
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
citation_check: {
enabled: true,
min_bibliography_citations: 3,
}
},
}
);
Values
Default 0
Type integer