Command R+
The enterprise standard for RAG and Tool Use, optimized for business workflows.
Generic Info
- Publisher: Cohere
- Release Date: April 2024
- Parameters: 104B
- Context Window: 128k tokens
- License: CC-BY-NC (Research) / Commercial
- Key Capabilities: RAG, Tool Use, Multilingual (10 languages)
Command R+ is purpose-built for real-world enterprise applications. It excels at retrieving information from external sources (RAG) and using tools to automate complex workflows, all while reducing hallucinations with citations.
Hello World Guide
Interact with Command R+ using the cohere Python client.
Python
import cohere
# Initialize client with API key
co = cohere.Client("YOUR_API_KEY")
message = "Search for the latest stock price of Apple and summarize it."
# Example of tool use / RAG capability (simplified)
response = co.chat(
model="command-r-plus",
message=message,
connectors=[{"id": "web-search"}] # Enables web search tool
)
print(response.text)
print("\nCitations:")
for citation in response.citations:
print(citation)
Industry Usage
Enterprise Search
Powers internal search engines that can answer complex questions by synthesizing data from thousands of documents.
Workflow Automation
Used to build agents that can interact with CRMs, databases, and other business tools to automate tasks.
Financial Analysis
Leveraged for analyzing financial reports and market data due to its high accuracy and citation features.