From 058a3727dd0dd1933ce4613649bb7f4dc428d336 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 17:24:01 +0000 Subject: [PATCH 1/2] Initial plan From b6c638a4bf547f1404cce5bd13899a7073fa2d96 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 14 Feb 2026 17:38:21 +0000 Subject: [PATCH 2/2] Fix docker_api_proxy_test expectations for LLM gateway support Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/workflow/docker_api_proxy_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/workflow/docker_api_proxy_test.go b/pkg/workflow/docker_api_proxy_test.go index 4f8f6c9283..d6c41e65ae 100644 --- a/pkg/workflow/docker_api_proxy_test.go +++ b/pkg/workflow/docker_api_proxy_test.go @@ -15,9 +15,9 @@ func TestCollectDockerImages_APIProxyForEnginesWithLLMGateway(t *testing.T) { expectAPIProxy bool }{ { - name: "Claude engine does not include api-proxy image (supportsLLMGateway: false)", + name: "Claude engine includes api-proxy image (supportsLLMGateway: 10000)", engine: "claude", - expectAPIProxy: false, + expectAPIProxy: true, }, { name: "Copilot engine does not include api-proxy image (supportsLLMGateway: false)", @@ -25,9 +25,9 @@ func TestCollectDockerImages_APIProxyForEnginesWithLLMGateway(t *testing.T) { expectAPIProxy: false, }, { - name: "Codex engine does not include api-proxy image (supportsLLMGateway: false)", + name: "Codex engine includes api-proxy image (supportsLLMGateway: 10001)", engine: "codex", - expectAPIProxy: false, + expectAPIProxy: true, }, }