awesome-deepseek-integration/docs/continue
yuanjiarui c05871a86b
Update the config.json of the 'continue' integration (#319)
I have tried to use deepseek api in continue (the extension of VSCode which helps to code with AI).
It seems that the config.json code block show different "provider" value compared to the picture below teh code block.
I have tried both. "provider": "openai" works for me.
So I think the "provider" in code block needs to be amended
2025-02-25 07:34:52 +08:00
..
README_cn.md Update Continue's logo img link to current version 2025-01-28 16:43:01 +08:00
README.md Update the config.json of the 'continue' integration (#319) 2025-02-25 07:34:52 +08:00

Continue

An open-source autopilot in your IDE. Continue will generate, refactor, and explain entire sections of code with LLMs.

UI

image

Integrate with DeepSeek API

config.json
{
  "completionOptions": {
    "BaseCompletionOptions": {
        "temperature": 0.0,
        "maxTokens": 256
    }
  },
  "models": [
    {
      "title": "DeepSeek",
      "model": "deepseek-chat",
      "contextLength": 128000,
      "apiKey": "REDACTED",
      "provider": "openai",
      "apiBase": "https://api.deepseek.com/beta"
    }
  ],
  "tabAutocompleteModel": {
    "title": "DeepSeek",
    "model": "deepseek-chat",
    "apiKey": "REDACTED",
    "provider": "openai",
    "apiBase": "https://api.deepseek.com/beta"
  },
...

image