agents.content.structure_check.min_paragraphs - Evaluation-options - Feedback Aide API

Feedback Aide API Evaluation Options

min_paragraphs

Specifies the minimum number of paragraphs required in the response. Responses that have less than the specified amount will be flagged as not_scorable.

You would want to use this to flag responses where students have submitted very short or undeveloped essays, for example.

Examples

// Example for evaluate endpoints
{
    "options": {
        "agents": {
            "content": {
                "structure_check": {
                    "enabled": true,
                    "min_paragraphs": 3
                }
            }
        }
    }
}

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

        options: {
            agents: {
                content: {
                    structure_check: {
                        enabled: true,
                        min_paragraphs: 3
                    }
                }
            }
        },
    }
);

Values

Default 1

Type integer

Was this article helpful?

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