From db5bc7eedb43b4a47f0ccff44770437d185b6145 Mon Sep 17 00:00:00 2001 From: zjwu0522 Date: Fri, 12 Jun 2026 09:48:59 +0000 Subject: [PATCH] feat: allow 'max' reasoning effort gpt-5.5 and the 'xhigh' choice already landed on pin-all-versions (via #254). This adds the remaining 'max' level so Claude Opus 4.x can run at max reasoning effort. reasoning_effort is passed straight through to LiteLLM, so no agent-side changes are required. Co-Authored-By: Claude Opus 4.8 (1M context) --- pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.py b/pipeline.py index 6cb77444..a2cc79b7 100644 --- a/pipeline.py +++ b/pipeline.py @@ -113,7 +113,7 @@ def main(): parser.add_argument( "--reasoning-effort", default="default", - choices=["default", "minimal", "low", "medium", "high", "xhigh"], + choices=["default", "minimal", "low", "medium", "high", "xhigh", "max"], help="Reasoning effort level for supported models (default: None)", )