mirror of
https://github.com/deepseek-ai/awesome-deepseek-integration.git
synced 2025-04-03 18:44:03 +00:00
I have tried to use deepseek api in continue (the extension of VSCode which helps to code with AI). It seems that the config.json code block show different "provider" value compared to the picture below teh code block. I have tried both. "provider": "openai" works for me. So I think the "provider" in code block needs to be amended
44 lines
1.1 KiB
Markdown
44 lines
1.1 KiB
Markdown
<img src="https://github.com/continuedev/continue/blob/main/docs/static/img/logo.png?raw=true" width="64" height="auto" />
|
|
|
|
# [Continue](https://continue.dev/)
|
|
|
|
An open-source autopilot in your IDE.
|
|
Continue will generate, refactor, and explain entire sections of code with LLMs.
|
|
|
|
## UI
|
|

|
|
|
|
|
|
## Integrate with DeepSeek API
|
|
|
|
config.json
|
|
|
|
```json
|
|
{
|
|
"completionOptions": {
|
|
"BaseCompletionOptions": {
|
|
"temperature": 0.0,
|
|
"maxTokens": 256
|
|
}
|
|
},
|
|
"models": [
|
|
{
|
|
"title": "DeepSeek",
|
|
"model": "deepseek-chat",
|
|
"contextLength": 128000,
|
|
"apiKey": "REDACTED",
|
|
"provider": "openai",
|
|
"apiBase": "https://api.deepseek.com/beta"
|
|
}
|
|
],
|
|
"tabAutocompleteModel": {
|
|
"title": "DeepSeek",
|
|
"model": "deepseek-chat",
|
|
"apiKey": "REDACTED",
|
|
"provider": "openai",
|
|
"apiBase": "https://api.deepseek.com/beta"
|
|
},
|
|
...
|
|
```
|
|
|
|

|