> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.nvidia.com/nemoclaw/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.nvidia.com/nemoclaw/_mcp/server.

# View the Active Inference Route

> Inspect the provider and model on the live NemoClaw-managed OpenShell inference route.

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.
The direct form reads the gateway that `NEMOCLAW_GATEWAY_PORT` selects.

```bash
nemohermes inference get
```

Expected output:

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

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

```bash
nemohermes inference get --json
```

Expected output:

```json
{
  "provider": "nvidia-prod",
  "model": "nvidia/nemotron-3-super-120b-a12b"
}
```

The command exits non-zero with `OpenShell inference route is not configured for gateway '<gateway-name>'.` when the selected gateway has no configured inference route.
Run `nemohermes onboard` to configure one.
For lookup failures, the error names the gateway without rendering command output.
It reports a timeout, a nonzero exit status, no exit status, or output NemoClaw cannot interpret after a command exits successfully.
Run `nemohermes status` after a direct lookup fails.
Run `nemohermes <name> status` after a sandbox-first lookup fails.

## Use the Sandbox-First Form

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

```bash
nemohermes <name> inference get
```

`NEMOCLAW_GATEWAY_PORT` first selects the sandbox registry and fallback gateway.
When that registry contains the named sandbox, the command resolves its recorded gateway and reads that gateway-wide route.
The command does not search registries for other gateway ports.
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.

```bash
nemohermes <name> status
```

The status output shows the provider and model recorded for that sandbox.
When the gateway's live shared route differs, status prints both routes and reports whether `connect` can safely restore the recorded route.
Refer to [Use Shared Gateway Routes](use-shared-gateway-routes) for the text and JSON drift fields and their compatibility rules.
Use the route verification workflow when you need to prove that an inference request succeeds through the sandbox path.

## Related Topics

* [Verify the Sandbox Inference Route](../validate-inference/verify-inference-route) for an end-to-end route check.
* [Use Shared Gateway Routes](use-shared-gateway-routes) when multiple sandboxes use one gateway.
* [Switch Models](switch-models) to select another model.
* [Switch Providers](switch-providers) to move to another provider family.