@runloop/api-client - v1.4.0
    Preparing search index...

    A lightweight view of a benchmark run currently in progress, showing basic execution details without full outcome data.

    interface InProgressRun {
        benchmark_run_id: string;
        start_time_ms: number;
        state: "running" | "completed" | "canceled";
        agent_config?:
            | ExternalAPIAgentConfig
            | Runloop.BenchmarkJobView.InProgressRun.JobAgentConfig
            | null;
        duration_ms?: number
        | null;
    }
    Index

    Properties

    benchmark_run_id: string

    The ID of the benchmark run.

    start_time_ms: number

    Start time (Unix milliseconds).

    state: "running" | "completed" | "canceled"

    The current state of the run.

    agent_config?:
        | ExternalAPIAgentConfig
        | Runloop.BenchmarkJobView.InProgressRun.JobAgentConfig
        | null

    Agent configuration used for this run. Specifies whether the run was driven by an external API agent or a job-defined agent.

    duration_ms?: number | null

    Duration so far in milliseconds.