awesome-deepseek-integration/docs/continue/README.md
2024-08-28 11:44:21 +08:00

1.4 KiB

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": 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