docs: remove numeric model selection references and document /models
- Update `/model` docs to reflect summary view and alias/provider syntax - Remove numbered picker and `/model <#>` references - Add `/models` and `/models <provider>` guidance PR #1398 (Jan 21, 2026) removed numeric model selection from chat, but the docs were never updated. Users see `/model 3` in docs but get "Numeric model selection is not supported in chat" when they try it. 🤖 AI Disclosure: Drafted with Claude (Opus 4.5) assistance. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
da421b9ef7
commit
fe1b0c7ca7
@ -92,15 +92,19 @@ You can switch models for the current session without restarting:
|
||||
|
||||
```
|
||||
/model
|
||||
/model list
|
||||
/model 3
|
||||
/model openai/gpt-5.2
|
||||
/model status
|
||||
/model openai/gpt-5.2
|
||||
/model opus
|
||||
/models
|
||||
/models openai
|
||||
```
|
||||
|
||||
Notes:
|
||||
- `/model` (and `/model list`) is a compact, numbered picker (model family + available providers).
|
||||
- `/model <#>` selects from that picker.
|
||||
- `/model` shows a summary of the current model and brief usage instructions.
|
||||
- `/model <provider/model>` switches to that exact model.
|
||||
- `/model <alias>` switches using a configured alias (for example, `/model opus`).
|
||||
- `/models` lists available providers, and `/models <provider>` lists that provider's models.
|
||||
- Numeric selection like `/model 3` is not supported.
|
||||
- `/model status` is the detailed view (auth candidates and, when configured, provider endpoint `baseUrl` + `api` mode).
|
||||
- Model refs are parsed by splitting on the **first** `/`. Use `provider/model` when typing `/model <ref>`.
|
||||
- If the model ID itself contains `/` (OpenRouter-style), you must include the provider prefix (example: `/model openrouter/moonshotai/kimi-k2`).
|
||||
|
||||
@ -1925,13 +1925,9 @@ Use the `/model` command as a standalone message:
|
||||
/model gemini-flash
|
||||
```
|
||||
|
||||
You can list available models with `/model`, `/model list`, or `/model status`.
|
||||
You can view providers with `/models`, list a provider's models with `/models <provider>`, and switch models with `/model <provider/model>` or `/model <alias>`.
|
||||
|
||||
`/model` (and `/model list`) shows a compact, numbered picker. Select by number:
|
||||
|
||||
```
|
||||
/model 3
|
||||
```
|
||||
Use `/model status` for a detailed view of your current model and auth configuration.
|
||||
|
||||
You can also force a specific auth profile for the provider (per session):
|
||||
|
||||
|
||||
@ -131,16 +131,19 @@ Examples:
|
||||
|
||||
```
|
||||
/model
|
||||
/model list
|
||||
/model 3
|
||||
/model openai/gpt-5.2
|
||||
/model opus@anthropic:default
|
||||
/model status
|
||||
/model openai/gpt-5.2
|
||||
/model opus
|
||||
/models
|
||||
/models openai
|
||||
```
|
||||
|
||||
Notes:
|
||||
- `/model` and `/model list` show a compact, numbered picker (model family + available providers).
|
||||
- `/model <#>` selects from that picker (and prefers the current provider when possible).
|
||||
- `/model` shows a summary of the current model plus usage instructions.
|
||||
- `/model <provider/model>` switches to that exact model.
|
||||
- `/model <alias>` switches using a configured alias (for example, `/model opus`).
|
||||
- `/models` lists available providers, and `/models <provider>` lists that provider's models.
|
||||
- Numeric selection like `/model 3` is not supported.
|
||||
- `/model status` shows the detailed view, including configured provider endpoint (`baseUrl`) and API mode (`api`) when available.
|
||||
|
||||
## Debug overrides
|
||||
|
||||
Loading…
Reference in New Issue
Block a user