Command-R

CohereForAI

Cohere

Cohere AI 的 Command-R 能够支持十多种语言的对话,它针对 RAG 进行了优化,但在任何任务中都能表现出色。

模型信息

模型

Command-R

作者

CohereForAI

架构

Cohere

参数

350亿

格式

GGUF

磁盘大小

13.82 GB

下载和运行Command-R

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

使用终端下载 c4ai-command-r

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

lms get c4ai-command-r
如果您还没有安装,请运行 npx lmstudio install-cli

在您的代码中调用 c4ai-command-r

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

下一步:构建!🔨

了解更多