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

    Configuration for an agent in a benchmark job

    interface JobAgentConfig {
        name: string;
        type: "job_agent";
        agent_environment?:
            | Runloop.BenchmarkJobView.InProgressRun.JobAgentConfig.AgentEnvironment
            | null;
        agent_id?: string
        | null;
        kwargs?: { [key: string]: string } | null;
        model_name?: string | null;
        timeout_seconds?: number | null;
    }
    Index

    Properties

    name: string

    Name of the agent

    type: "job_agent"
    agent_environment?:
        | Runloop.BenchmarkJobView.InProgressRun.JobAgentConfig.AgentEnvironment
        | null

    Environment configuration to use for this agent

    agent_id?: string | null

    ID of the agent to use (optional if agent exists by name)

    kwargs?: { [key: string]: string } | null

    Additional kwargs for agent configuration

    model_name?: string | null

    Model name override for this agent

    timeout_seconds?: number | null

    Timeout in seconds for this agent