From 52aa763d47b4527967bddf7406c44fbf20820a33 Mon Sep 17 00:00:00 2001 From: 0xallam Date: Fri, 9 Jan 2026 20:17:46 -0800 Subject: [PATCH] fix: add missing 'low' value to reasoning effort options Co-Authored-By: Claude Opus 4.5 --- strix/interface/main.py | 4 ++-- strix/llm/llm.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/strix/interface/main.py b/strix/interface/main.py index 33fa44f..f40c5a2 100644 --- a/strix/interface/main.py +++ b/strix/interface/main.py @@ -125,10 +125,10 @@ def validate_environment() -> None: # noqa: PLR0912, PLR0915 error_text.append("• ", style="white") error_text.append("STRIX_REASONING_EFFORT", style="bold cyan") error_text.append( - " - Reasoning effort level: none, minimal, medium, high, xhigh (default: high)\n", + " - Reasoning effort level: none, minimal, low, medium, high, xhigh " + "(default: high)\n", style="white", ) - ) error_text.append("\nExample setup:\n", style="white") error_text.append("export STRIX_LLM='openai/gpt-5'\n", style="dim white") diff --git a/strix/llm/llm.py b/strix/llm/llm.py index 3d6e0da..816d6f2 100644 --- a/strix/llm/llm.py +++ b/strix/llm/llm.py @@ -55,7 +55,7 @@ _LLM_API_BASE = ( ) _STRIX_REASONING_EFFORT = os.getenv( "STRIX_REASONING_EFFORT" -) # "none", "minimal", "medium", "high", or "xhigh" +) # "none", "minimal", "low", "medium", "high", or "xhigh" class LLMRequestFailedError(Exception):