Member Junction
    Preparing search index...

    Trace Validator Oracle.

    Validates that agent execution trace has no errors. Checks AgentRun status and all AgentRunStep records for error conditions.

    Configuration:

    • allowWarnings: Whether to allow warning-level issues (default: true)
    • requiredSteps: Minimum number of steps expected (optional)
    • maxSteps: Maximum number of steps allowed (optional)
    const oracle = new TraceValidatorOracle();
    const result = await oracle.evaluate({
    targetEntity: agentRun,
    contextUser
    }, {
    allowWarnings: true,
    requiredSteps: 2
    });

    Implements

    Index

    Constructors

    Properties

    Methods

    Constructors

    Properties

    type: "trace-no-errors" = 'trace-no-errors'

    Unique type identifier for this oracle. Used in test configuration to specify which oracles to run.

    Methods