From 93fc7acbe3c17bd6c4daccf42d51f6305c5e4e91 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 13 Apr 2025 10:34:33 -0700 Subject: [PATCH] copy --- aider/website/docs/llms/xai.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/aider/website/docs/llms/xai.md b/aider/website/docs/llms/xai.md index 5c2432fbe..9161ae7a3 100644 --- a/aider/website/docs/llms/xai.md +++ b/aider/website/docs/llms/xai.md @@ -9,7 +9,7 @@ You'll need a [xAI API key](https://console.x.ai.). To use xAI: -``` +```bash python -m pip install -U aider-chat export XAI_API_KEY= # Mac/Linux @@ -27,15 +27,18 @@ aider --model xai/grok-3-mini-beta # Grok 3 Mini fast (faster, more expensive) aider --model xai/grok-3-mini-fast-beta -# The Grok 3 Mini models support the --reasoning-effort flag. -# See the [reasoning settings documentation](../config/reasoning.md) for details. -# Example: -aider --model xai/grok-3-mini-beta --reasoning-effort high - # List models available from xAI aider --list-models xai/ ``` +The Grok 3 Mini models support the `--reasoning-effort` flag. +See the [reasoning settings documentation](../config/reasoning.md) for details. +Example: + +```bash +aider --model xai/grok-3-mini-beta --reasoning-effort high +``` +