AutoBE
    Preparing search index...

    Interface AutoBeAnalyzeModuleReviewFileResult

    Per-file result from the cross-file module review.

    interface AutoBeAnalyzeModuleReviewFileResult {
        approved: boolean;
        feedback: string;
        fileIndex: number;
        revisedSections: AutoBeAnalyzeModuleSection[] | null;
        revisedSummary: string | null;
        revisedTitle: string | null;
    }
    Index

    Properties

    approved: boolean

    Whether this file's module structure passed the cross-file review.

    If true, the file's module is consistent with the overall structure. If false, the file's module must be regenerated with feedback.

    feedback: string

    Detailed review feedback for this specific file.

    Contains specific issues and recommendations for aligning with other files' structures.

    fileIndex: number

    Index of the file in the scenario's files array.

    revisedSections: AutoBeAnalyzeModuleSection[] | null

    Revised module sections if modified during review. Set to null if no revision.

    revisedSummary: string | null

    Revised summary if modified during review. Set to null if no revision.

    revisedTitle: string | null

    Revised title if modified during review. Set to null if no revision.