Cohere
Cohere

Cohere: Command R+

cohere/command-r-plus

Command R+ is a new, 104B-parameter LLM from Cohere. It's useful for roleplay, general consumer usecases, and Retrieval Augmented Generation (RAG).

It offers multilingual support for ten key languages to facilitate global business operations. See benchmarks and the launch post here.

Use of this model is subject to Cohere's Acceptable Use Policy.

Tools

Function Calling

Context Window

128,000

0

Using Cohere: Command R+ with Python API

Using Cohere: Command R+ with OpenAI compatible API

import openai

client = openai.Client(
  api_key= '{your_api_key}',
  base_url="https://api.model.box/v1",
)
response = client.chat.completions.create(
model="cohere/command-r-plus",
messages: [
  {
    role: 'user',
    content:
      'introduce your self',
    },
  ]
)
print(response)