awesome-deepseek-integration/docs/continue
2024-08-31 09:48:47 +08:00
..
README_cn.md Update Continue.dev README_cn.md 2024-08-28 11:44:59 +08:00
README.md Update Continue.dev README.md 2024-08-31 09:48:47 +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

config.json
{
  "completionOptions": {
    "temperature": 1.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": 1.0,
      "topP": 1,
      "presencePenalty": 0,
      "frequencyPenalty": 0
    },
    "provider": "openai"
  }
}

Chat with model

image