Command A Reasoning
Description
Command A Reasoning is Cohere's first reasoning model, able to 'think' before generating an output in a way that allows it to perform well in certain kinds of nuanced problem-solving and agent-based tasks in 23 languages.
At a Glance
Key pricing and model details available for this model.
Input price
$2.30
per 1M tokens
Output price
$10.00
per 1M tokens
Context window
256K
tokens
Hallucination rate
0%
Token Pricing
Token pricing normalized to per-million-token rates.
Input / 1M tokens
$2.30
Output / 1M tokens
$10.00
Cache Read / 1M tokens
Free
Token Pricing Details
Rates are shown per 1M tokens for easier comparison.
| Input / 1M tokens | $2.30 |
| Input unit | 1M tokens |
| Output / 1M tokens | $10.00 |
| 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
Available
Supported Parameters
Artificial Analysis
Index scores currently reported for this model.
Intelligence Index
24.3
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.
24.3
Reported score
MMLU-Pro
A broad and difficult knowledge-and-reasoning benchmark across many subjects.
80%
Reported score
GPQA
Graduate-level science questions designed to be difficult to shortcut.
69.8%
Reported score
HLE
A very hard expert-level exam across a wide range of subjects.
11.6%
Reported score
LiveCodeBench
Fresh programming tasks meant to test current coding ability.
50.5%
Reported score
SciCode
Coding tasks drawn from real scientific workflows.
35.9%
Reported score
MATH-500
A set of difficult competition-style math problems.
98.1%
Reported score
AIME
Advanced math competition questions.
84.3%
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-a-reasoning-08-2025",
messages: [
{
role: "user",
content: "Explain quantum computing in simple terms"
}
]
});
console.log(completion.choices[0].message);
}
main();