mirror of
https://github.com/deepseek-ai/awesome-deepseek-integration.git
synced 2025-04-28 06:29:04 -04:00
1.2 KiB
1.2 KiB

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