DeepSeek Coder V2 Lite

DeepSeek

deepseek2

作为超越 GPT-4 的 236B DeepSeek Coder V2 模型的“弟弟”,这款模型同样表现出色,支持 338 种不同的语言!

模型信息

模型

DeepSeek Coder V2 Lite

作者

DeepSeek

架构

deepseek2

参数

157亿

格式

gguf

磁盘占用大小

8.46 GB

下载和运行DeepSeek Coder V2 Lite

在 LM Studio 中打开以查看下载选项

从终端下载 deepseek-coder-v2

使用 lms(LM Studio 的开发者命令行界面)下载模型。

lms get deepseek-coder-v2
如果您还没有安装,请运行 npx lmstudio install-cli

从您的代码中调用 deepseek-coder-v2

curl https://127.0.0.1:1234/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-coder-v2",
    "messages": [
      { "role": "system", "content": "Always answer in rhymes." },
      { "role": "user", "content": "Introduce yourself." }
    ],
    "temperature": 0.7,
    "max_tokens": -1,
    "stream": true
  }'

下一步:构建!🔨

了解更多