Skip to content

Latest commit

 

History

History
40 lines (36 loc) · 693 Bytes

File metadata and controls

40 lines (36 loc) · 693 Bytes
title How to Configure Groq with Continue
sidebarTitle Groq
Get your API key from the [Groq Console](https://console.groq.com/docs/models)

Configuration

```yaml title="config.yaml" name: My Config version: 0.0.1 schema: v1

models: - name: <MODEL_NAME> provider: groq model: <MODEL_ID> apiKey: <YOUR_GROQ_API_KEY>"

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