Feedback Aide API Evaluation Options
inappropriate_content
Configuration options for content moderation checking for inappropriate content in responses.
See Content moderation with Feedback Aide for more information.
Examples
// Example for evaluate endpoints
{
"options": {
"agents": {
"moderation": {
"inappropriate_content": {
"enabled": true
}
}
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
agents: {
moderation: {
inappropriate_content: {
enabled: true
}
}
}
},
}
);
Values
Type object
Properties
-
enabled boolean
Controls whether to use the content moderation checking for inappropriate content in responses.