AutoBE
    Preparing search index...

    Interface AutoBeAnalyzeScenarioReviewIssue

    Structured issue identified during scenario review.

    interface AutoBeAnalyzeScenarioReviewIssue {
        category:
            | "missing_entity"
            | "hallucinated_entity"
            | "actor_misclassification"
            | "incomplete_relationship"
            | "missing_feature"
            | "hallucinated_feature";
        description: string;
        suggestion: string;
    }
    Index

    Properties

    category:
        | "missing_entity"
        | "hallucinated_entity"
        | "actor_misclassification"
        | "incomplete_relationship"
        | "missing_feature"
        | "hallucinated_feature"

    Issue category for programmatic handling.

    description: string

    Human-readable description of the issue.

    suggestion: string

    Suggested fix for the scenario regeneration.