GPT 5.1
Description
GPT-5.1 is the latest frontier-grade model in the GPT-5 series, offering stronger general-purpose reasoning, improved instruction adherence, and a more natural conversational style compared to GPT-5. It uses adaptive reasoning to allocate computation dynamically, responding quickly to simple queries while spending more depth on complex tasks. The model produces clearer, more grounded explanations with reduced jargon, making it easier to follow even on technical or multi-step problems. Built for broad task coverage, GPT-5.1 delivers consistent gains across math, coding, and structured analysis workloads, with more coherent long-form answers and improved tool-use reliability. It also features refined conversational alignment, enabling warmer, more intuitive responses without compromising precision. GPT-5.1 serves as the primary full-capability successor to GPT-5
At a Glance
Key pricing and model details available for this model.
Input price
$1.25$1.19
per 1M tokens
Output price
$10.00$9.50
per 1M tokens
Context window
400K
tokens
Hallucination rate
0%
Token Pricing
Token pricing normalized to per-million-token rates.
Input / 1M tokens
$1.25$1.19
Output / 1M tokens
$10.00$9.50
Cache Read / 1M tokens
$0.13
Token Pricing Details
Rates are shown per 1M tokens for easier comparison.
| Input / 1M tokens | $1.19 |
| Input unit | 1M tokens |
| Output / 1M tokens | $9.50 |
| Output unit | 1M tokens |
| Cache Read / 1M tokens | $0.13 |
| Cache Read unit | 1M tokens |
Feature Availability
Capabilities explicitly listed in the current payload.
LLM
Available
Vision
Available
Function calling
Available
Reasoning
Available
Supported Parameters
Artificial Analysis
Index scores currently reported for this model.
Intelligence Index
47.7
Coding Index
44.7
Math Index
94
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.
47.7
Reported score
Coding Index
How well the model handles real programming tasks.
44.7
Reported score
Math Index
Composite score measuring mathematical reasoning and problem-solving.
94
Reported score
MMLU-Pro
A broad and difficult knowledge-and-reasoning benchmark across many subjects.
87%
Reported score
GPQA
Graduate-level science questions designed to be difficult to shortcut.
87.3%
Reported score
HLE
A very hard expert-level exam across a wide range of subjects.
26.5%
Reported score
LiveCodeBench
Fresh programming tasks meant to test current coding ability.
86.8%
Reported score
SciCode
Coding tasks drawn from real scientific workflows.
43.3%
Reported score
AIME 2025
The 2025 AIME benchmark used to reduce data leakage concerns.
94%
Reported score
IFBench
Measures how precisely the model follows detailed instructions.
72.9%
Reported score
LCR
Tests long-context reasoning over large documents and conversations.
75%
Reported score
TerminalBench Hard
A harder coding-agent benchmark for complex multi-step terminal tasks.
45.5%
Reported score
Tau2
Evaluates realistic agent behavior in tool-using support workflows.
81.9%
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: "gpt-5.1",
messages: [
{
role: "user",
content: "Explain quantum computing in simple terms"
}
]
});
console.log(completion.choices[0].message);
}
main();