@langwatch/scenario
    Preparing search index...

    Interface FinishTestArgs

    The arguments for finishing a test, used by the judge agent's tool.

    interface FinishTestArgs {
        criteria: Record<string, "true" | "false" | "inconclusive">;
        reasoning: string;
        verdict: "inconclusive" | "success" | "failure";
    }
    Index

    Properties

    criteria: Record<string, "true" | "false" | "inconclusive">

    A record of the criteria and their results.

    reasoning: string

    The reasoning behind the verdict.

    verdict: "inconclusive" | "success" | "failure"

    The final verdict of the test.