Feedback Aide API Evaluation Options
justification_of_score
Configuration options for enabling the model to return an explanation of the score.
Important Only available for essay models.
Examples
// Example for evaluate endpoints
{
"options": {
"justification_of_score": {
"enabled": true
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
justification_of_score: {
enabled: true
}
},
}
);
Values
Type object
Properties
-
enabled boolean
Controls whether to retrieve the justification of score details.