Feedback Aide API Evaluation Options
thesis
Controls whether the response's main thesis statement is highlighted with an annotation.
You would want to use this to automatically highlight the thesis statement in the provided response.
A thesis statement is a single, declarative sentence that presents a clear and specific claim about the essay’s subject. It establishes the central argument that the body of the essay is expected to develop and support through evidence.
Examples
// Example for evaluate endpoints
{
"options": {
"annotations": {
"thesis": true,
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
"annotations": {
"thesis": true,
}
},
}
);
Values
Default false
Type boolean