mirror of
https://github.com/usestrix/strix.git
synced 2026-08-28 05:25:00 +00:00
fix: add missing 'low' value to reasoning effort options
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
d932602a6b
commit
52aa763d47
2 changed files with 3 additions and 3 deletions
|
|
@ -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")
|
||||
|
|
|
|||
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue