From 13d7cef3032c7d8746bb3a872f50917df14c0ebb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 20 Jan 2026 02:09:39 +0000 Subject: [PATCH 1/2] Initial plan From 853c3abbcd0e50a3192681178b23d77ff756dcc8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 20 Jan 2026 02:17:58 +0000 Subject: [PATCH 2/2] Remove unused hasInternalPrefix function from test file Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/workflow/compiler_orchestrator_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkg/workflow/compiler_orchestrator_test.go b/pkg/workflow/compiler_orchestrator_test.go index 8498050999f..e344c8dfa9d 100644 --- a/pkg/workflow/compiler_orchestrator_test.go +++ b/pkg/workflow/compiler_orchestrator_test.go @@ -481,9 +481,3 @@ func TestDetectTextOutputUsageInOrchestrator(t *testing.T) { }) } } - -// Helper functions - -func hasInternalPrefix(key string) bool { - return len(key) > 2 && key[0] == '_' && key[1] == '_' -}