聊天 UI 文档

Cohere

Hugging Face's logo
加入 Hugging Face 社区

并获得增强文档体验

开始使用

Cohere

功能 可用
工具
多模态

您可以使用 Cohere 直接从 Chat UI 运行其模型。您需要拥有一个 Cohere 帐户,然后获取您的 API 密钥。您可以在 .env.local 中使用 COHERE_API_TOKEN 变量直接指定它,也可以在端点配置中设置它。

这是一个 Cohere 模型配置示例。您可以通过将 id 字段设置为模型名称来设置要使用的模型。

MODELS=`[
  {
    "name": "command-r-plus",
    "displayName": "Command R+",
    "tools": true,
    "endpoints": [{
      "type": "cohere",
      <!-- optionally specify these, or use COHERE_API_TOKEN
      "apiKey": "your-api-token"
      -->
    }]
  }
]`
< > 在 GitHub 上更新