Skip to content

Latest commit

 

History

History
44 lines (39 loc) · 777 Bytes

File metadata and controls

44 lines (39 loc) · 777 Bytes
title DeepSeek
slug ../deepseek
**Discover DeepSeek models [here](https://continue.dev/hub?q=DeepSeek)** You can get an API key from the [DeepSeek Console](https://www.deepseek.com/).

Confiugration

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

models: - name: <MODEL_NAME> provider: deepseek model: <MODEL_ID> apiKey: <YOUR_DEEPSEEK_API_KEY>

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