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"
-->
}]
}
]`