内容目录
由于 deepseek 暂时不支持充值,而且涨回原价,之前deepseek+cursor 的组合已经面临很多问题,cursor 也傲娇变得不好用了,改新方案。
continue:chat 和 edit 功能,对应cursor 的 chat 功能;
cline:自动编程,对应cursor 的compose功能;(中文版cline Chinese)
客户端:Vscode+continue+cline 插件
安装Vscode
continue
- Vscode插件市场搜continue插件,安装
- 然后在continue的 config 文件里增加大模型 API
- config 文件定位:commd+L,打开对话窗口,窗口右上角设置,然后点击新页面的 “Open configuration file”按钮,打开continue配置文件的编辑界面,编辑:
"models": [
{
"title": "DeepSeek-R1",
"model": "deepseek-ai/DeepSeek-R1",
"contextLength": 64000,
"apiKey": "你的api密钥",
"provider": "siliconflow"
},
{
"title": "DeepSeek-V3",
"model": "deepseek-ai/DeepSeek-V3",
"contextLength": 64000,
"apiKey": "你的 api密钥",
"provider": "siliconflow"
},
{
"title": "DeepSeek-Llama-70B",
"model": "deepseek-ai/DeepSeek-R1-Distill-Llama-70B",
"contextLength": 32000,
"apiKey": "你的 api密钥,
"provider": "siliconflow"
}
],
cline Chinese
-
Vscode插件市场搜cline Chinese插件,安装
-
插件设置模型api,下图
windows的cmd命令行,整理成可执…