Feedback Aide API Evaluation Options
moderation
Configuration options for moderating sensitive, inappropriate, or crisis-related content in responses.
See Content moderation with Feedback Aide for more information.
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
Type object
Properties
-
enabled boolean
Controls whether to use the content moderation checking for responses.