An open-source autopilot in your IDE. Continue will generate, refactor, and explain entire sections of code with LLMs.
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