diff --git a/llms-full.txt b/llms-full.txt index 10aea661..dde7688a 100644 --- a/llms-full.txt +++ b/llms-full.txt @@ -24610,7 +24610,7 @@ Source: https://docs.openhands.dev/openhands/usage/cli/installation.md docker run -it \ --pull=always \ -e AGENT_SERVER_IMAGE_REPOSITORY=ghcr.io/openhands/agent-server \ - -e AGENT_SERVER_IMAGE_TAG=1.11.4-python \ + -e AGENT_SERVER_IMAGE_TAG=1.12.0-python \ -e SANDBOX_USER_ID=$(id -u) \ -e SANDBOX_VOLUMES=$SANDBOX_VOLUMES \ -v /var/run/docker.sock:/var/run/docker.sock \ @@ -26708,7 +26708,7 @@ These variables correspond to the `[sandbox]` section in `config.toml`: | `SANDBOX_BROWSERGYM_EVAL_ENV` | string | `""` | BrowserGym evaluation environment | | `SANDBOX_VOLUMES` | string | `""` | Volume mounts (replaces deprecated workspace settings) | | `AGENT_SERVER_IMAGE_REPOSITORY` | string | `""` | Runtime container image repository (e.g., `ghcr.io/openhands/agent-server`) | -| `AGENT_SERVER_IMAGE_TAG` | string | `""` | Runtime container image tag (e.g., `1.11.4-python`) | +| `AGENT_SERVER_IMAGE_TAG` | string | `""` | Runtime container image tag (e.g., `1.12.0-python`) | | `SANDBOX_KEEP_RUNTIME_ALIVE` | boolean | `false` | Keep runtime alive after session ends | | `SANDBOX_PAUSE_CLOSED_RUNTIMES` | boolean | `false` | Pause instead of stopping closed runtimes | | `SANDBOX_CLOSE_DELAY` | integer | `300` | Delay before closing idle runtimes (seconds) | @@ -28967,20 +28967,20 @@ Download and install the LM Studio desktop app from [lmstudio.ai](https://lmstud ```bash docker run -it --rm --pull=always \ -e AGENT_SERVER_IMAGE_REPOSITORY=ghcr.io/openhands/agent-server \ - -e AGENT_SERVER_IMAGE_TAG=1.11.4-python \ + -e AGENT_SERVER_IMAGE_TAG=1.12.0-python \ -e LOG_ALL_EVENTS=true \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ~/.openhands:/.openhands \ -p 3000:3000 \ --add-host host.docker.internal:host-gateway \ --name openhands-app \ - docker.openhands.dev/openhands/openhands:1.4 + docker.openhands.dev/openhands/openhands:1.5 ``` 2. Wait until the server is running (see log below): ``` Digest: sha256:e72f9baecb458aedb9afc2cd5bc935118d1868719e55d50da73190d3a85c674f -Status: Image is up to date for docker.openhands.dev/openhands/openhands:1.4 +Status: Image is up to date for docker.openhands.dev/openhands/openhands:1.5 Starting OpenHands... Running OpenHands as root 14:22:13 - openhands:INFO: server_config.py:50 - Using config class None @@ -29560,14 +29560,14 @@ Note that you'll still need `uv` installed for the default MCP servers to work p ```bash docker run -it --rm --pull=always \ -e AGENT_SERVER_IMAGE_REPOSITORY=ghcr.io/openhands/agent-server \ - -e AGENT_SERVER_IMAGE_TAG=1.11.4-python \ + -e AGENT_SERVER_IMAGE_TAG=1.12.0-python \ -e LOG_ALL_EVENTS=true \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ~/.openhands:/.openhands \ -p 3000:3000 \ --add-host host.docker.internal:host-gateway \ --name openhands-app \ - docker.openhands.dev/openhands/openhands:1.4 + docker.openhands.dev/openhands/openhands:1.5 ``` @@ -30518,7 +30518,7 @@ To fix this: docker run -it --rm \ -e SANDBOX_VSCODE_PORT=41234 \ -e AGENT_SERVER_IMAGE_REPOSITORY=ghcr.io/openhands/agent-server \ - -e AGENT_SERVER_IMAGE_TAG=1.11.4-python \ + -e AGENT_SERVER_IMAGE_TAG=1.12.0-python \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ~/.openhands:/.openhands \ -p 3000:3000 \ diff --git a/openhands/usage/cli/installation.mdx b/openhands/usage/cli/installation.mdx index 01737936..a186a1eb 100644 --- a/openhands/usage/cli/installation.mdx +++ b/openhands/usage/cli/installation.mdx @@ -71,7 +71,7 @@ description: Install the OpenHands CLI on your system docker run -it \ --pull=always \ -e AGENT_SERVER_IMAGE_REPOSITORY=ghcr.io/openhands/agent-server \ - -e AGENT_SERVER_IMAGE_TAG=1.11.4-python \ + -e AGENT_SERVER_IMAGE_TAG=1.12.0-python \ -e SANDBOX_USER_ID=$(id -u) \ -e SANDBOX_VOLUMES=$SANDBOX_VOLUMES \ -v /var/run/docker.sock:/var/run/docker.sock \ diff --git a/openhands/usage/environment-variables.mdx b/openhands/usage/environment-variables.mdx index 0f1bf382..e575627f 100644 --- a/openhands/usage/environment-variables.mdx +++ b/openhands/usage/environment-variables.mdx @@ -108,7 +108,7 @@ These variables correspond to the `[sandbox]` section in `config.toml`: | `SANDBOX_BROWSERGYM_EVAL_ENV` | string | `""` | BrowserGym evaluation environment | | `SANDBOX_VOLUMES` | string | `""` | Volume mounts (replaces deprecated workspace settings) | | `AGENT_SERVER_IMAGE_REPOSITORY` | string | `""` | Runtime container image repository (e.g., `ghcr.io/openhands/agent-server`) | -| `AGENT_SERVER_IMAGE_TAG` | string | `""` | Runtime container image tag (e.g., `1.11.4-python`) | +| `AGENT_SERVER_IMAGE_TAG` | string | `""` | Runtime container image tag (e.g., `1.12.0-python`) | | `SANDBOX_KEEP_RUNTIME_ALIVE` | boolean | `false` | Keep runtime alive after session ends | | `SANDBOX_PAUSE_CLOSED_RUNTIMES` | boolean | `false` | Pause instead of stopping closed runtimes | | `SANDBOX_CLOSE_DELAY` | integer | `300` | Delay before closing idle runtimes (seconds) | diff --git a/openhands/usage/llms/local-llms.mdx b/openhands/usage/llms/local-llms.mdx index f7440133..b2bfccd9 100644 --- a/openhands/usage/llms/local-llms.mdx +++ b/openhands/usage/llms/local-llms.mdx @@ -70,20 +70,20 @@ Download and install the LM Studio desktop app from [lmstudio.ai](https://lmstud ```bash docker run -it --rm --pull=always \ -e AGENT_SERVER_IMAGE_REPOSITORY=ghcr.io/openhands/agent-server \ - -e AGENT_SERVER_IMAGE_TAG=1.11.4-python \ + -e AGENT_SERVER_IMAGE_TAG=1.12.0-python \ -e LOG_ALL_EVENTS=true \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ~/.openhands:/.openhands \ -p 3000:3000 \ --add-host host.docker.internal:host-gateway \ --name openhands-app \ - docker.openhands.dev/openhands/openhands:1.4 + docker.openhands.dev/openhands/openhands:1.5 ``` 2. Wait until the server is running (see log below): ``` Digest: sha256:e72f9baecb458aedb9afc2cd5bc935118d1868719e55d50da73190d3a85c674f -Status: Image is up to date for docker.openhands.dev/openhands/openhands:1.4 +Status: Image is up to date for docker.openhands.dev/openhands/openhands:1.5 Starting OpenHands... Running OpenHands as root 14:22:13 - openhands:INFO: server_config.py:50 - Using config class None diff --git a/openhands/usage/run-openhands/local-setup.mdx b/openhands/usage/run-openhands/local-setup.mdx index 5ac891de..ed127832 100644 --- a/openhands/usage/run-openhands/local-setup.mdx +++ b/openhands/usage/run-openhands/local-setup.mdx @@ -126,14 +126,14 @@ Note that you'll still need `uv` installed for the default MCP servers to work p ```bash docker run -it --rm --pull=always \ -e AGENT_SERVER_IMAGE_REPOSITORY=ghcr.io/openhands/agent-server \ - -e AGENT_SERVER_IMAGE_TAG=1.11.4-python \ + -e AGENT_SERVER_IMAGE_TAG=1.12.0-python \ -e LOG_ALL_EVENTS=true \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ~/.openhands:/.openhands \ -p 3000:3000 \ --add-host host.docker.internal:host-gateway \ --name openhands-app \ - docker.openhands.dev/openhands/openhands:1.4 + docker.openhands.dev/openhands/openhands:1.5 ``` diff --git a/openhands/usage/troubleshooting/troubleshooting.mdx b/openhands/usage/troubleshooting/troubleshooting.mdx index 1a38d142..fbafc5df 100644 --- a/openhands/usage/troubleshooting/troubleshooting.mdx +++ b/openhands/usage/troubleshooting/troubleshooting.mdx @@ -87,7 +87,7 @@ To fix this: docker run -it --rm \ -e SANDBOX_VSCODE_PORT=41234 \ -e AGENT_SERVER_IMAGE_REPOSITORY=ghcr.io/openhands/agent-server \ - -e AGENT_SERVER_IMAGE_TAG=1.11.4-python \ + -e AGENT_SERVER_IMAGE_TAG=1.12.0-python \ -v /var/run/docker.sock:/var/run/docker.sock \ -v ~/.openhands:/.openhands \ -p 3000:3000 \