Feedback Aide API Evaluation Options
min_in_text_citations
Specifies the minimum number of required in-text citations in the response. 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_in_text_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,
}
},
}
);
Values
Default 0
Type integer