StableCode

Stability AI

stablelm

来自 Stable Diffusion 团队的这款小型代码模型,为轻量级硬件用户提供了优秀的代码辅助功能。

模型信息

模型

StableCode

作者

Stability AI

架构

stablelm

参数

27亿

格式

gguf

磁盘大小

1.61 GB

下载和运行StableCode

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

使用终端下载 stable-code-3b

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

lms get stable-code-3b
如果您还没有安装,请运行 npx lmstudio install-cli 进行安装。

从您的代码中调用 stable-code-3b

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

下一步:构建!🔨

了解更多