Feedback Aide API Evaluation Options
return_thinking
Controls whether to return the model's thinking process alongside the evaluation result.
Examples
// Example for evaluate endpoints
{
"options": {
"thinking": {
"return_thinking": true
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
thinking: {
return_thinking: true
}
},
}
);
Values
Default false
Type boolean