View the Active Inference Route

View as Markdown

Use the NemoClaw CLI to read the provider and model on the live OpenShell inference route. This command reports configuration state and does not authenticate a model request.

Read the Live Route

Run the direct route command when you only need the active provider and model.

$nemo-deepagents inference get

Expected output:

Provider: nvidia-prod
Model: nvidia/nemotron-3-super-120b-a12b

Pass --json for machine-readable output.

$nemo-deepagents inference get --json

Expected output:

1{
2 "provider": "nvidia-prod",
3 "model": "nvidia/nemotron-3-super-120b-a12b"
4}

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

Use the Sandbox-First Form

Use the sandbox-first form when you are already working with a named sandbox.

$nemo-deepagents <name> inference get

The command resolves the gateway recorded for that sandbox and reads its gateway-wide route. OpenShell exposes one inference route to every sandbox registered on the same gateway.

Include Sandbox Health

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

$nemo-deepagents <name> status

The status output includes the configured provider, model, and endpoint with the rest of the sandbox state. Use the route verification workflow when you need to prove that an inference request succeeds through the sandbox path.