awesome-deepseek-integration/docs/continue/README.md

45 lines
1.1 KiB
Markdown
Raw Normal View History

2024-01-11 03:41:35 -05: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 03:22:06 -05:00
# [Continue](https://continue.dev/)
2024-01-15 21:11:29 -05:00
An open-source autopilot in your IDE.
Continue will generate, refactor, and explain entire sections of code with LLMs.
2024-01-11 04:29:40 -05:00
2024-01-11 03:22:06 -05:00
## UI
2024-01-11 03:41:35 -05:00
![image](https://github.com/deepseek-ai/awesome-deepseek-integration/assets/59196087/094e9dc8-03d0-493d-95fb-6129a42a35bd)
2024-01-11 03:22:06 -05:00
2024-06-25 01:49:30 -04:00
## Integrate with DeepSeek API
2024-01-16 01:51:11 -05:00
2024-06-25 01:49:30 -04:00
config.json
```json
{
2024-08-13 05:34:17 -04:00
"completionOptions": {
2024-09-09 02:33:55 -04:00
"BaseCompletionOptions": {
"temperature": 0.0,
"maxTokens": 256
}
2024-08-13 05:34:17 -04:00
},
2024-09-09 02:33:55 -04:00
"models": [
{
"title": "DeepSeek",
"model": "deepseek-chat",
"contextLength": 128000,
"apiKey": "REDACTED",
"provider": "deepseek",
"apiBase": "https://api.deepseek.com/beta"
2024-09-09 02:33:55 -04:00
}
],
"tabAutocompleteModel": {
2024-07-02 02:47:44 -04:00
"title": "DeepSeek",
2024-09-09 02:33:55 -04:00
"model": "deepseek-chat",
"apiKey": "REDACTED",
"provider": "deepseek",
"apiBase": "https://api.deepseek.com/beta"
2024-06-25 01:49:30 -04:00
},
2024-09-09 02:33:55 -04:00
...
2024-06-25 01:49:30 -04:00
```
2024-09-09 02:33:55 -04:00
![image](https://github.com/user-attachments/assets/30aca5ee-b1bc-4c01-a007-45bb229283dd)