awesome-deepseek-integration/docs/continue
2025-04-28 17:49:03 +08:00
..
README_cn.md docs(continue): migrate integration config examples from deprecated config.json to config.yaml (#441) 2025-04-28 17:49:03 +08:00
README.md docs(continue): migrate integration config examples from deprecated config.json to config.yaml (#441) 2025-04-28 17:49:03 +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

Modify the config.yaml file to add the DeepSeek model configuration, replacing YOUR_DEEPSEEK_API_KEY with your DeepSeek API Key.

  • ~/.continue/config.yaml (MacOS/Linux)
  • %USERPROFILE%\.continue\config.yaml (Windows)
name: Local Assistant
version: 1.0.0
schema: v1
models:
  - name: DeepSeek
    provider: deepseek
    model: deepseek-chat
    apiKey: YOUR_DEEPSEEK_API_KEY
    apiBase: https://api.deepseek.com/beta
    roles:
      - chat
      - edit
      - apply
      - summarize
      - autocomplete
    contextLength: 128000
    defaultCompletionOptions:
      temperature: 0.0
      maxTokens: 256
context:
  - provider: code
  - provider: docs
  - provider: diff
  - provider: terminal
  - provider: problems
  - provider: folder
  - provider: codebase