2025-01-28 08:07:24 +00:00
|
|
|
<img src="https://github.com/continuedev/continue/blob/main/docs/static/img/logo.png?raw=true" 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
|
|
|
config.json
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
2024-08-13 09:34:17 +00:00
|
|
|
"completionOptions": {
|
2024-09-09 06:33:55 +00:00
|
|
|
"BaseCompletionOptions": {
|
|
|
|
"temperature": 0.0,
|
|
|
|
"maxTokens": 256
|
|
|
|
}
|
2024-08-13 09:34:17 +00:00
|
|
|
},
|
2024-09-09 06:33:55 +00:00
|
|
|
"models": [
|
|
|
|
{
|
|
|
|
"title": "DeepSeek",
|
|
|
|
"model": "deepseek-chat",
|
|
|
|
"contextLength": 128000,
|
|
|
|
"apiKey": "REDACTED",
|
2024-12-31 15:57:00 +00:00
|
|
|
"provider": "deepseek",
|
|
|
|
"apiBase": "https://api.deepseek.com/beta"
|
2024-09-09 06:33:55 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"tabAutocompleteModel": {
|
2024-07-02 06:47:44 +00:00
|
|
|
"title": "DeepSeek",
|
2024-09-09 06:33:55 +00:00
|
|
|
"model": "deepseek-chat",
|
|
|
|
"apiKey": "REDACTED",
|
2024-12-31 15:57:00 +00:00
|
|
|
"provider": "deepseek",
|
|
|
|
"apiBase": "https://api.deepseek.com/beta"
|
2024-06-25 05:49:30 +00:00
|
|
|
},
|
2024-09-09 06:33:55 +00:00
|
|
|
...
|
2024-06-25 05:49:30 +00:00
|
|
|
```
|
|
|
|
|
2024-09-09 06:33:55 +00:00
|
|
|

|