From c737417505ab514c2772fe6a911a796d75e7fc16 Mon Sep 17 00:00:00 2001 From: aseembits93 Date: Fri, 30 Jan 2026 14:56:34 -0800 Subject: [PATCH 1/3] include concolic tests in arg even if not used --- codeflash/api/aiservice.py | 1 + 1 file changed, 1 insertion(+) diff --git a/codeflash/api/aiservice.py b/codeflash/api/aiservice.py index 157bf24e6..64ce6a196 100644 --- a/codeflash/api/aiservice.py +++ b/codeflash/api/aiservice.py @@ -832,6 +832,7 @@ def get_optimization_review( replay_tests: str, calling_fn_details: str, language: str = "python", + concolic_tests: str = "", ) -> OptimizationReviewResult: """Compute the optimization review of current Pull Request. From 0bf31128676123da497ad92d01a60c41eb326bb5 Mon Sep 17 00:00:00 2001 From: aseembits93 Date: Fri, 30 Jan 2026 15:26:41 -0800 Subject: [PATCH 2/3] extra keyword args ignored --- codeflash/api/aiservice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeflash/api/aiservice.py b/codeflash/api/aiservice.py index 64ce6a196..b8bc9454b 100644 --- a/codeflash/api/aiservice.py +++ b/codeflash/api/aiservice.py @@ -832,7 +832,7 @@ def get_optimization_review( replay_tests: str, calling_fn_details: str, language: str = "python", - concolic_tests: str = "", + **_kwargs: Any, ) -> OptimizationReviewResult: """Compute the optimization review of current Pull Request. From 699dc30b1b6be9bedeb8e8e3c4e949b1d146fb87 Mon Sep 17 00:00:00 2001 From: aseembits93 Date: Fri, 30 Jan 2026 15:29:28 -0800 Subject: [PATCH 3/3] extra keyword args ignored for staging --- codeflash/api/cfapi.py | 1 + 1 file changed, 1 insertion(+) diff --git a/codeflash/api/cfapi.py b/codeflash/api/cfapi.py index 52e03c638..f7957fa0d 100644 --- a/codeflash/api/cfapi.py +++ b/codeflash/api/cfapi.py @@ -285,6 +285,7 @@ def create_staging( optimization_review: str = "", original_line_profiler: str | None = None, optimized_line_profiler: str | None = None, + **_kwargs: Any, # ignores the language argument TODO Hesham: staging for all langs ) -> Response: """Create a staging pull request, targeting the specified branch. (usually 'staging').