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