Feedback Aide API Evaluation Options
enabled
Using Feedback Aide Agents will result in additional credit usage. For more information, reach out to your Learnosity Customer Success Manager.
Controls whether to apply additional guardrails to scoring feedback.
You would want to use this to mask PII from the scoring engine and to apply secondary safety checks to feedback content.
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
Default false
Type boolean