agents.explainability.justification_of_score.enabled - Evaluation-options - Feedback Aide API

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 retrieve the justification of score details.

You would want to use this to return the model's explanation of the score for your evaluation workflow, for example.

Note When using the JavaScript API and the createUI() method, ensure that the modules.justification_of_score_view option has a value set, for example with "grader_only", so that the justification results are rendered in the UI.

Examples

// Example for evaluate endpoints
{
    "options": {
        "agents": {
            "explainability": {
                "justification_of_score": {
                    "enabled": true
                }
            }
        }
    }
}

// Example using the JavaScript API
const feedbackSession = await feedbackApp.feedbackSession(
    { /* security token */ },
    {
        state: '...',
        session_uuid: '...',
        // ...

        options: {
            agents: {
                explainability: {
                    justification_of_score: {
                        enabled: true
                    }
                }
            }
        },
    }
);

Values

Default false

Type boolean

Was this article helpful?

Did you arrive here by accident? If so, learn more about Learnosity.