From 06f15f61648b5bce26a9ec38e3f39857ccc71752 Mon Sep 17 00:00:00 2001 From: hemanth-openai Date: Sat, 7 Feb 2026 02:15:13 -0800 Subject: [PATCH] Adjust parallel recovery growth increment --- src/gabriel/utils/openai_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gabriel/utils/openai_utils.py b/src/gabriel/utils/openai_utils.py index e36bddd..5340732 100644 --- a/src/gabriel/utils/openai_utils.py +++ b/src/gabriel/utils/openai_utils.py @@ -4994,7 +4994,7 @@ def maybe_adjust_concurrency() -> None: concurrency_cap < growth_headroom_limit and successes_since_adjust >= success_threshold ): - increment = max(1, int(math.ceil(max(concurrency_cap * 0.15, 2)))) + increment = max(1, int(math.ceil(max(concurrency_cap * 0.1, 2)))) new_cap = min(ceiling_cap, concurrency_cap + increment) if new_cap != concurrency_cap: old_cap = concurrency_cap