Feedback Aide API Evaluation Options
guardrails
Configuration options for masking PII from the scoring engine and enforcing strict moderation on feedback.
See Content moderation with Feedback Aide for more information.
Examples
// Example for evaluate endpoints
{
"options": {
"agents": {
"moderation": {
"guardrails": {
"enabled": true
}
}
}
}
}
// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
{ /* security token */ },
{
state: '...',
session_uuid: '...',
// ...
options: {
agents: {
moderation: {
guardrails: {
enabled: true
}
}
}
},
}
);
Values
Type object
Properties
-
enabled boolean
Controls whether to apply additional guardrails to scoring feedback.