awesome-deepseek-integration/docs/continue
2024-08-13 17:34:54 +08:00
..
README_cn.md Update README_cn.md for Continue 2024-08-13 17:34:54 +08:00
README.md Update README.md for Continue 2024-08-13 17:34:17 +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

Tab Completion

Please use the following config before we release official FIM support:

config.json
{
  "completionOptions": {
    "temperature": 0,
    "maxTokens": 4096
  },
  "models": [{
    "title": "DeepSeek",
    "provider": "openai",
    "model": "deepseek-coder",
    "apiBase": "https://api.deepseek.com/beta",
    "apiKey": REDACTED,
    "contextLength": 8192
  }],
  "tabAutocompleteOptions": {
    "maxPromptTokens": 4096
  },
  "tabAutocompleteModel": {
    "title": "DeepSeek-V2",
    "model": "deepseek-coder",
    "apiKey": REDACTED,
    "contextLength": 8192,
    "apiBase": "https://api.deepseek.com/beta",
    "completionOptions": {
      "maxTokens": 4096,
      "temperature": 0,
      "topP": 1,
      "presencePenalty": 0,
      "frequencyPenalty": 0
    },
    "provider": "openai"
  }
}

Chat with model

image