> ## Documentation Index
> Fetch the complete documentation index at: https://docs.gourmand.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# NVIDIA

<Info>
  Get an API key from the [NVIDIA](https://docs.nvidia.com/nim/large-language-models/latest/getting-started.html#option-1-from-api-catalog)
</Info>

## Configuration

<Tabs>
  <Tab title="YAML">
    ```yaml title="config.yaml" theme={null}
    models:
      - name: <MODEL_NAME>
        provider: nvidia
        model: <MODEL_ID>
        apiKey: <YOUR_NVIDIA_API_KEY>
    ```
  </Tab>

  <Tab title="JSON (Deprecated)">
    ```json title="config.json" theme={null}
    {
      "models": [
        {
          "title": "<MODEL_NAME>",
          "provider": "nvidia",
          "model": "<MODEL_ID>",
          "apiKey": "<YOUR_NVIDIA_API_KEY>"
        }
      ]
    }
    ```
  </Tab>
</Tabs>
