FlowGuard API - v1.2.0-rc.2
    Preparing search index...

    Interface IterationResult<T>

    Result of a single convergence iteration. Returned by the iterate callback passed to runConvergenceLoop / runSingleIteration.

    interface IterationResult<T> {
        verdict: "approve" | "changes_requested" | "unable_to_review";
        updated?: T;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    verdict: "approve" | "changes_requested" | "unable_to_review"
    updated?: T