From 1b1086f161341c3f92e0789dfa23ab6ebb1e171f Mon Sep 17 00:00:00 2001 From: openhands Date: Wed, 15 Apr 2026 14:41:57 +0000 Subject: [PATCH] Fix GAIA build target docs: binary-minimal -> binary The GAIA benchmark requires Chromium for browser operations, which is only available in the 'binary' target (not 'binary-minimal'). The documentation example and Dockerfile default ARG were incorrectly showing 'binary-minimal'. This aligns the documentation with the actual runtime configuration in run_infer.py which explicitly uses 'binary' target. Closes #39 Co-authored-by: openhands --- benchmarks/gaia/Dockerfile.gaia | 2 +- benchmarks/gaia/build_images.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmarks/gaia/Dockerfile.gaia b/benchmarks/gaia/Dockerfile.gaia index f4ee76d03..e8630b78c 100644 --- a/benchmarks/gaia/Dockerfile.gaia +++ b/benchmarks/gaia/Dockerfile.gaia @@ -1,7 +1,7 @@ # Dockerfile for GAIA evaluation with MCP server pre-installed # Extends the base SDK image to pre-cache mcp-server-fetch and eliminate startup delays -ARG SDK_IMAGE=ghcr.io/openhands/eval-agent-server:f715937-gaia-binary-minimal +ARG SDK_IMAGE=ghcr.io/openhands/eval-agent-server:f715937-gaia-binary FROM ${SDK_IMAGE} # Switch to root to install packages diff --git a/benchmarks/gaia/build_images.py b/benchmarks/gaia/build_images.py index 6da18829b..c9e7ba638 100644 --- a/benchmarks/gaia/build_images.py +++ b/benchmarks/gaia/build_images.py @@ -7,7 +7,7 @@ Example: uv run benchmarks/gaia/build_images.py \ - --image ghcr.io/openhands/eval-agent-server --target binary-minimal --push + --image ghcr.io/openhands/eval-agent-server --target binary --push """ import sys