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