Feedback Aide API Evaluation Options
thinking
Configuration options for the model's thinking process during evaluation.
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
Type object
Properties
-
return_thinking boolean
Controls whether to return the model's thinking process alongside the evaluation result.