This commit is contained in:
Paul Gauthier 2025-04-13 10:34:33 -07:00
parent 72dc67950f
commit 93fc7acbe3

View file

@ -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=<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
```