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

46 lines
1.1 KiB
Markdown
Raw Normal View History

2024-01-16 02:12:37 +00:00
<img src="https://github.com/deepseek-ai/awesome-deepseek-integration/assets/59196087/e4d082de-6f64-44b9-beaa-0de55d70cfab" width="64" height="auto" />
# [Continue](https://continue.dev/)
开源 IDE 插件,使用 LLM 做你的编程助手.
## UI
2024-06-25 05:51:20 +00:00
2024-01-16 02:12:37 +00:00
![image](https://github.com/deepseek-ai/awesome-deepseek-integration/assets/59196087/094e9dc8-03d0-493d-95fb-6129a42a35bd)
2024-06-25 05:51:20 +00:00
## 接入 DeepSeek API
config.json
```json
{
2024-08-13 09:34:54 +00:00
"completionOptions": {
2024-09-09 06:33:28 +00:00
"BaseCompletionOptions": {
"temperature": 0.0,
"maxTokens": 256
}
2024-08-13 09:34:54 +00:00
},
2024-09-09 06:33:28 +00:00
"models": [
{
"title": "DeepSeek",
"model": "deepseek-chat",
"contextLength": 128000,
"apiKey": "REDACTED",
"provider": "deepseek",
"apiBase": "https://api.deepseek.com/beta"
2024-09-09 06:33:28 +00:00
}
],
"tabAutocompleteModel": {
"title": "DeepSeek Coder",
"model": "deepseek-coder",
2024-09-09 06:33:28 +00:00
"apiKey": "REDACTED",
"provider": "deepseek",
"apiBase": "https://api.deepseek.com/beta"
2024-06-25 05:51:20 +00:00
},
2024-09-09 06:33:28 +00:00
...
2024-06-25 05:51:20 +00:00
```
2024-02-02 06:04:59 +00:00
2024-09-09 06:33:28 +00:00
![image](https://github.com/user-attachments/assets/30aca5ee-b1bc-4c01-a007-45bb229283dd)
2024-01-16 06:51:59 +00:00