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

## NVIDIA LLM provider now available

NVIDIA is now a supported LLM provider for the Voice Agent API. The following model is available in the Standard pricing tier:

- `nemotron-3-nano-30B-A3B` — [Nemotron 3 Nano 30B A3B](https://docs.api.nvidia.com/nim/reference/nvidia-nemotron-3-nano-30b-a3b-infer) provides cost efficiency with high accuracy for targeted agentic tasks.

Set the provider type to `nvidia` in your agent configuration:

```json
{
  "agent": {
    "think": {
      "provider": {
        "type": "nvidia",
        "model": "nemotron-3-nano-30B-A3B",
        "temperature": 0.7
      }
    }
  }
}
```

NVIDIA is a managed provider, so the `endpoint` field is optional. For the full list of supported models and pricing tiers, see the [Voice Agent LLM Models documentation](/docs/voice-agent-llm-models).