First-class Models
Mux ships with curated models kept up to date with the frontier. Use any custom model with/model <provider:model_id>.
| Model | ID | Aliases | Default |
|---|---|---|---|
| Fable 5 | anthropic:claude-fable-5 | fable | |
| Mythos 5 | anthropic:claude-mythos-5 | mythos | |
| Opus 4.8 | anthropic:claude-opus-4-8 | opus | ✓ |
| Sonnet 5 | anthropic:claude-sonnet-5 | sonnet | |
| Haiku 4.5 | anthropic:claude-haiku-4-5 | haiku | |
| GPT-5.6 Sol | openai:gpt-5.6-sol | gpt, sol | |
| GPT-5.6 Terra | openai:gpt-5.6-terra | terra | |
| GPT-5.6 Luna | openai:gpt-5.6-luna | luna | |
| GPT-5.5 Pro | openai:gpt-5.5-pro | gpt-pro, gpt-5.5-pro | |
| GPT-5.4 Mini | openai:gpt-5.4-mini | gpt-mini | |
| GPT-5.4 Nano | openai:gpt-5.4-nano | gpt-nano | |
| Codex 5.3 | openai:gpt-5.3-codex | codex, codex-5.3 | |
| Spark 5.3 | openai:gpt-5.3-codex-spark | spark | |
| Codex Mini 5.1 | openai:gpt-5.1-codex-mini | codex-mini | |
| Codex Max 5.1 | openai:gpt-5.1-codex-max | codex-max | |
| Gemini 3.1 Pro Preview | google:gemini-3.1-pro-preview | gemini, gemini-pro | |
| Gemini 3.5 Flash | google:gemini-3.5-flash | gemini-flash | |
| Grok 4 1 Fast | xai:grok-4-1-fast | grok, grok-4, grok-4.1, grok-4-1 | |
| Grok Code Fast 1 | xai:grok-code-fast-1 | grok-code | |
| DeepSeek V4 Pro | deepseek:deepseek-v4-pro | deepseek, deepseek-pro, deepseek-v4, deepseek-v4-pro | |
| DeepSeek V4 Flash | deepseek:deepseek-v4-flash | deepseek-flash, deepseek-v4-flash |
Pro reasoning mode (GPT-5.6)
Every GPT-5.6 model (Sol, Terra, and Luna) supports OpenAI’s pro reasoning mode. Toggle the PRO badge next to the thinking slider (or run “Toggle Pro Reasoning Mode” from the Command Palette) to sendreasoning.mode: "pro" with each request. The setting is saved per workspace. Pro mode uses the same per-token pricing but consumes more tokens and responses can take noticeably longer. Requests routed through non-passthrough gateways (e.g. OpenRouter, GitHub Copilot) fall back to standard mode.
Model Selection
Keyboard shortcuts:- Cycle models
- macOS:
Cmd+/ - Windows/Linux:
Ctrl+/
- macOS:
Cmd+Shift+P / Ctrl+Shift+P):
- Type “model”
- Select “Change Model”
- Choose from available models
provider:model-name
One-shot Overrides
Override the model or thinking level for a single message using slash commands. The override applies only to that message — workspace settings stay unchanged.Syntax
| Command | Effect |
|---|---|
/sonnet explain this code | Use Sonnet for one message |
/opus+high deep review | Use Opus with high thinking |
/haiku+0 quick answer | Use Haiku at its lowest thinking level |
/+2 analyze this | Keep current model, set thinking level 2 |
Thinking levels
Append+level to any model alias. Levels can be named (off, low, medium/med, high, max) or numeric (0–9).
Numeric levels are model-relative — they map to the model’s allowed thinking range:
0= model’s lowest allowed level (e.g.,offfor Sonnet,mediumfor GPT-5.5 Pro)- Higher numbers select progressively higher levels, clamped to the model’s maximum
/sonnet+0 disables thinking while /gpt-pro+0 sets thinking to medium (GPT-5.5 Pro’s minimum).
Use /+level (no model) to override thinking on the current model: /+0 quick answer
CLI
Themux run CLI accepts the same thinking levels via --thinking:
Next Steps
Configure Providers
Set up API keys for Anthropic, OpenAI, Google, and other providers.