Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions docs/inference/switch-inference-providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,18 +185,28 @@ $ nemoclaw onboard --resume --recreate-sandbox

## Verify the Active Model

Run the inference command to confirm the live gateway route:
Use `nemoclaw inference get` to print the provider and model the gateway is currently routing to.
Run it before `nemoclaw inference set` to confirm the starting state, or after a switch to verify the new route.

```console
$ nemoclaw inference get
Provider: nvidia-prod
Model: nvidia/nemotron-3-super-120b-a12b
```

Add `--json` for machine-readable output:
Pass `--json` for machine-readable output.

```console
$ nemoclaw inference get --json
{
"provider": "nvidia-prod",
"model": "nvidia/nemotron-3-super-120b-a12b"
}
```

The command exits non-zero with `OpenShell inference route is not configured.` when the gateway has no registered inference route.
Run `nemoclaw onboard` to configure one.

Run the status command when you also need sandbox, service, and messaging health:

```console
Expand Down
Loading