Feedback Aide API Evaluation Options
enabled
Controls whether to use the content moderation checking for responses.
You would want to use this to enable response moderation for sensitive, inappropriate, or crisis-related content.
Examples
// Example for evaluate endpoints
{
"options": {
"moderation": {
"enabled": true
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
moderation: {
enabled: true
}
},
}
);
Values
Default false
Type boolean