> ## 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.

# How to Configure Groq with Gobi

<Info>
  Get your API key from the [Groq Console](https://console.groq.com/docs/models)
</Info>

## Configuration

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

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