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

# DeepSeek

<Tip>
  **Discover DeepSeek models [here](https://hub.gourmand.dev/?q=DeepSeek)**
</Tip>

<Info>
  You can get an API key from the [DeepSeek Console](https://www.deepseek.com/).
</Info>

## Confiugration

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

  <Tab title="JSON">
    ```json title="config.json" theme={null}
    {
      "models": [
        {
          "title": "<MODEL_NAME>",
          "provider": "deepseek",
          "model": "<MODEL_ID>",
          "apiKey": "<YOUR_DEEPSEEK_API_KEY>"
        }
      ]
    }
    ```
  </Tab>
</Tabs>
