vigiles API reference
    Preparing search index...

    Interface RunOut

    The raw output of one trial: the agent's exit code + captured streams.

    interface RunOut {
        code: number;
        stderr?: string;
        stdout: string;
    }
    Index

    Properties

    Properties

    code: number
    stderr?: string

    Captured stderr, when the runner provides it (used for rate-limit detection).

    stdout: string