Command R7B (12-2024)
Description
command-r7b-12-2024 is a small, fast update delivered in December 2024. It excels at RAG, tool use, agents, and similar tasks requiring complex reasoning and multiple steps.
At a Glance
Key pricing and model details available for this model.
Input price
$0.04
per 1M tokens
Output price
$0.13
per 1M tokens
Context window
128K
tokens
Hallucination rate
0%
Token Pricing
Token pricing normalized to per-million-token rates.
Input / 1M tokens
$0.04
Output / 1M tokens
$0.13
Cache Read / 1M tokens
Free
Token Pricing Details
Rates are shown per 1M tokens for easier comparison.
| Input / 1M tokens | $0.04 |
| Input unit | 1M tokens |
| Output / 1M tokens | $0.13 |
| Output unit | 1M tokens |
| Cache Read / 1M tokens | Free |
| Cache Read unit | 1M tokens |
Feature Availability
Capabilities explicitly listed in the current payload.
LLM
Available
Vision
Not listed
Function calling
Available
Reasoning
Not listed
Supported Parameters
Artificial Analysis
Index scores currently reported for this model.
Intelligence Index
7.4
Category Radar
Aggregated from the benchmark values present for reasoning, code, math, and accuracy.
Benchmark Breakdown
Detailed benchmark results drawn from the current payload.
Intelligence Index
Overall 'how smart' score for an AI, combining reasoning, math, coding, and knowledge.
7.4
Reported score
MMLU-Pro
A broad and difficult knowledge-and-reasoning benchmark across many subjects.
33.8%
Reported score
GPQA
Graduate-level science questions designed to be difficult to shortcut.
28.4%
Reported score
HLE
A very hard expert-level exam across a wide range of subjects.
4.8%
Reported score
LiveCodeBench
Fresh programming tasks meant to test current coding ability.
4.8%
Reported score
SciCode
Coding tasks drawn from real scientific workflows.
6.2%
Reported score
MATH-500
A set of difficult competition-style math problems.
16.4%
Reported score
AIME
Advanced math competition questions.
0.7%
Reported score
Code Samples
Quick start with the Routeway API
import OpenAI from 'openai';
const openai = new OpenAI({
baseURL: "https://api.routeway.ai/v1",
apiKey: "<YOUR_API_KEY>",
});
async function main() {
const completion = await openai.chat.completions.create({
model: "command-r7b-12-2024",
messages: [
{
role: "user",
content: "Explain quantum computing in simple terms"
}
]
});
console.log(completion.choices[0].message);
}
main();