Feedback Aide API Evaluation Options
citation_check
Configuration options for checking if the essay response has the minimum required number of citations.
You would want to use this to skip grading and flag responses that do not meet the expected citation requirements.
Important Only available for essay models.
Examples
// Example for evaluate endpoints
{
"options": {
"citation_check": {
"enabled": true,
"min_in_text_citations": 2,
"min_bibliography_citations": 2
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
citation_check: {
enabled: true,
min_in_text_citations: 2,
min_bibliography_citations: 2
}
},
}
);
Values
Type object
Properties
-
enabled boolean
Controls whether to use citation checking for responses.
-
min_in_text_citations integer
Specifies the minimum number of required in-text citations in the response.
-
min_bibliography_citations integer
Specifies the minimum number of required citations in the bibliography or works cited section.