2024-01-11 08:41:35 +00:00
|
|
|
<img src="https://github.com/deepseek-ai/awesome-deepseek-integration/assets/59196087/e4d082de-6f64-44b9-beaa-0de55d70cfab" width="64" height="auto" />
|
2024-01-11 08:22:06 +00:00
|
|
|
|
|
|
|
# [Continue](https://continue.dev/)
|
|
|
|
|
2024-01-16 02:11:29 +00:00
|
|
|
An open-source autopilot in your IDE.
|
|
|
|
Continue will generate, refactor, and explain entire sections of code with LLMs.
|
2024-01-11 09:29:40 +00:00
|
|
|
|
2024-01-11 08:22:06 +00:00
|
|
|
## UI
|
2024-01-11 08:41:35 +00:00
|
|
|

|
2024-01-11 08:22:06 +00:00
|
|
|
|
|
|
|
|
2024-06-25 05:49:30 +00:00
|
|
|
## Integrate with DeepSeek API
|
2024-01-16 06:51:11 +00:00
|
|
|
|
2024-06-25 05:49:30 +00:00
|
|
|
### Tab Completion
|
2024-01-16 06:51:11 +00:00
|
|
|
|
2024-06-25 05:49:30 +00:00
|
|
|
Please use the following config before we release official FIM support:
|
|
|
|
|
|
|
|
config.json
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
2024-08-13 09:34:17 +00:00
|
|
|
"completionOptions": {
|
|
|
|
"temperature": 0,
|
|
|
|
"maxTokens": 4096
|
|
|
|
},
|
2024-07-02 06:47:44 +00:00
|
|
|
"models": [{
|
|
|
|
"title": "DeepSeek",
|
|
|
|
"provider": "openai",
|
|
|
|
"model": "deepseek-coder",
|
2024-08-13 09:34:17 +00:00
|
|
|
"apiBase": "https://api.deepseek.com/beta",
|
2024-07-04 11:49:53 +00:00
|
|
|
"apiKey": REDACTED,
|
2024-07-02 06:47:44 +00:00
|
|
|
"contextLength": 8192
|
|
|
|
}],
|
2024-06-25 05:49:30 +00:00
|
|
|
"tabAutocompleteOptions": {
|
2024-08-13 09:34:17 +00:00
|
|
|
"maxPromptTokens": 4096
|
2024-06-25 05:49:30 +00:00
|
|
|
},
|
|
|
|
"tabAutocompleteModel": {
|
|
|
|
"title": "DeepSeek-V2",
|
|
|
|
"model": "deepseek-coder",
|
|
|
|
"apiKey": REDACTED,
|
|
|
|
"contextLength": 8192,
|
2024-08-13 09:34:17 +00:00
|
|
|
"apiBase": "https://api.deepseek.com/beta",
|
2024-06-25 05:49:30 +00:00
|
|
|
"completionOptions": {
|
|
|
|
"maxTokens": 4096,
|
|
|
|
"temperature": 0,
|
|
|
|
"topP": 1,
|
|
|
|
"presencePenalty": 0,
|
|
|
|
"frequencyPenalty": 0
|
|
|
|
},
|
2024-08-13 09:34:17 +00:00
|
|
|
"provider": "openai"
|
2024-06-25 05:49:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
### Chat with model
|
|
|
|
|
|
|
|

|