mirror of
https://github.com/deepseek-ai/awesome-deepseek-integration
synced 2025-01-22 18:48:09 +00:00
.. | ||
README_cn.md | ||
README.md |
Continue
An open-source autopilot in your IDE. Continue will generate, refactor, and explain entire sections of code with LLMs.
UI
Integrate with DeepSeek API
Tab Completion
Please use the following config before we release official FIM support:
config.json
{
"completionOptions": {
"temperature": 1.0,
"maxTokens": 4096
},
"models": [{
"title": "DeepSeek",
"provider": "openai",
"model": "deepseek-coder",
"apiBase": "https://api.deepseek.com/beta",
"apiKey": REDACTED,
"contextLength": 8192
}],
"tabAutocompleteOptions": {
"maxPromptTokens": 4096
},
"tabAutocompleteModel": {
"title": "DeepSeek-V2",
"model": "deepseek-coder",
"apiKey": REDACTED,
"contextLength": 8192,
"apiBase": "https://api.deepseek.com/beta",
"completionOptions": {
"maxTokens": 4096,
"temperature": 1.0,
"topP": 1,
"presencePenalty": 0,
"frequencyPenalty": 0
},
"provider": "openai"
}
}