fix: add missing 'low' value to reasoning effort options

This commit is contained in:
0xallam
2026-01-09 20:17:46 -08:00
parent 8b65094a24
commit 21e8e37a3e
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -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")