awesome-deepseek-integration/docs/continue
Kangjie YU 81ef3f8929 Update Continue's logo img link to current version
The current Continue's logo is updated in
<https://github.com/continuedev/continue/pull/1227/files>. In this
commit, update the Continue's logo img link to the Continue's official
git repo link:
<https://github.com/continuedev/continue/blob/main/docs/static/img/logo.png?raw=true>

Meanwhile, add a missing LF character to the end of README.md that uses
LF as the end-of-line character.
2025-01-28 16:43:01 +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 Continue's logo img link to current version 2025-01-28 16:43:01 +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": "deepseek",
      "apiBase": "https://api.deepseek.com/beta"
    }
  ],
  "tabAutocompleteModel": {
    "title": "DeepSeek",
    "model": "deepseek-chat",
    "apiKey": "REDACTED",
    "provider": "deepseek",
    "apiBase": "https://api.deepseek.com/beta"
  },
...

image