InternLM 2.5 20B

InternLM

internlm2

InternLM 2.5 在推理和工具使用方面表现出色,尤其适合拥有 24GB GPU 的用户。

模型信息

模型

InternLM 2.5 20B

作者

InternLM

架构

internlm2

参数

20B

格式

gguf

磁盘大小

7.55 GB

下载和运行InternLM 2.5 20B

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

使用终端下载 internlm2.5-20b

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

lms get internlm2.5-20b
如果您还没有安装,请运行 npx lmstudio install-cli 进行安装。

在代码中调用 internlm2.5-20b

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

下一步:构建!🔨

了解更多