diff --git a/AGENTS.md b/AGENTS.md index 07dc4a3..b97f394 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -386,10 +386,10 @@ Integration tests are in `src/__tests__/integration/` and require a running agen export LLM_API_KEY="your-api-key" export LLM_MODEL="anthropic/claude-sonnet-4-5-20250929" -# Start agent-server in Docker (software-agent-sdk v1.43.0) +# Start agent-server in Docker (software-agent-sdk v1.43.1) docker run -d --name agent-server -p 127.0.0.1:8010:8000 \ -v /tmp/agent-workspace:/workspace \ - ghcr.io/openhands/agent-server:1.43.0-python --host 0.0.0.0 + ghcr.io/openhands/agent-server:1.43.1-python --host 0.0.0.0 # Run integration tests npm run test:integration @@ -418,7 +418,7 @@ Required GitHub secrets: ### CI Image Version -- The integration workflow pins `ghcr.io/openhands/agent-server:1.43.0-python`, which corresponds to the `software-agent-sdk` release `v1.43.0`. +- The integration workflow pins `ghcr.io/openhands/agent-server:1.43.1-python`, which corresponds to the `software-agent-sdk` release `v1.43.1`. - Keep the TypeScript client tests strict against that released server image rather than adding compatibility fallbacks for older prerelease builds. ## Agent Behavior Guidelines diff --git a/README.md b/README.md index 87778ae..98a6f9d 100644 --- a/README.md +++ b/README.md @@ -473,14 +473,14 @@ Integration tests require a running agent-server in Docker with a mounted worksp chmod 777 /tmp/agent-workspace ``` -2. Start the agent-server container (software-agent-sdk v1.43.0): +2. Start the agent-server container (software-agent-sdk v1.43.1): ```bash docker run -d \ --name agent-server \ -p 127.0.0.1:8010:8000 \ -v /tmp/agent-workspace:/workspace \ - ghcr.io/openhands/agent-server:1.43.0-python --host 0.0.0.0 + ghcr.io/openhands/agent-server:1.43.1-python --host 0.0.0.0 ``` 3. Wait for the server to be ready: diff --git a/package.json b/package.json index c6dbc1b..b3a961b 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ } }, "config": { - "agentServerImage": "ghcr.io/openhands/agent-server:1.43.0-python" + "agentServerImage": "ghcr.io/openhands/agent-server:1.43.1-python" }, "scripts": { "build": "tsc && node ./scripts/copy-json-assets.mjs && node ./scripts/rewrite-relative-imports.mjs", diff --git a/src/generated/agent-server-schema.ts b/src/generated/agent-server-schema.ts index 1d23a6b..eae691b 100644 --- a/src/generated/agent-server-schema.ts +++ b/src/generated/agent-server-schema.ts @@ -1,5 +1,5 @@ // Generated file. Do not edit by hand. -// Source: ghcr.io/openhands/agent-server:1.43.0-python +// Source: ghcr.io/openhands/agent-server:1.43.1-python // Regenerate with: npm run generate:agent-server-api // This file is auto-generated by @hey-api/openapi-ts