fix: Change default model from claude-sonnet-4-6 to gpt-5 across docs and code

This commit is contained in:
0xallam
2026-02-20 10:35:58 -08:00
parent 027cea2f25
commit 7fb4b63b96
12 changed files with 25 additions and 25 deletions

View File

@@ -101,7 +101,7 @@ def validate_environment() -> None: # noqa: PLR0912, PLR0915
error_text.append("", style="white")
error_text.append("STRIX_LLM", style="bold cyan")
error_text.append(
" - Model name to use with litellm (e.g., 'anthropic/claude-sonnet-4-6')\n",
" - Model name to use with litellm (e.g., 'openai/gpt-5')\n",
style="white",
)
@@ -141,9 +141,9 @@ def validate_environment() -> None: # noqa: PLR0912, PLR0915
error_text.append("\nExample setup:\n", style="white")
if uses_strix_models:
error_text.append("export STRIX_LLM='strix/claude-sonnet-4.6'\n", style="dim white")
error_text.append("export STRIX_LLM='strix/gpt-5'\n", style="dim white")
else:
error_text.append("export STRIX_LLM='anthropic/claude-sonnet-4-6'\n", style="dim white")
error_text.append("export STRIX_LLM='openai/gpt-5'\n", style="dim white")
if missing_optional_vars:
for var in missing_optional_vars: