> ## Documentation Index
> Fetch the complete documentation index at: https://agno-v2-studio-tools-doc.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Nvidia

The Nvidia model provides access to Nvidia's language models.

## Parameters

| Parameter               | Type            | Default                                    | Description                                                      |
| ----------------------- | --------------- | ------------------------------------------ | ---------------------------------------------------------------- |
| `id`                    | `str`           | `"nvidia/llama-3.1-nemotron-70b-instruct"` | The id of the NVIDIA model to use                                |
| `name`                  | `str`           | `"NVIDIA"`                                 | The name of the model                                            |
| `provider`              | `str`           | `"NVIDIA"`                                 | The provider of the model                                        |
| `api_key`               | `Optional[str]` | `None`                                     | The API key for NVIDIA (defaults to NVIDIA\_API\_KEY env var)    |
| `base_url`              | `str`           | `"https://integrate.api.nvidia.com/v1"`    | The base URL for the NVIDIA API                                  |
| `retries`               | `int`           | `0`                                        | Number of retries to attempt before raising a ModelProviderError |
| `delay_between_retries` | `int`           | `1`                                        | Delay between retries, in seconds                                |
| `exponential_backoff`   | `bool`          | `False`                                    | If True, the delay between retries is doubled each time          |

NVIDIA extends the OpenAI-compatible interface and supports most parameters from OpenAI.
