Models
GPT-5.6 Sol
Model id: gpt-5.6-sol
- Agentic
- Frontier
- Coding
- Reasoning
- Vision
- Multimodal
- Long context
- Tools
- Research
OpenAI’s current GPT-5.6 Sol flagship for frontier chat, coding, and long-horizon agents.
Best for
Ideal as the default top OpenAI model for hard coding and multi-step tool work.
- Provider
- OpenAI
- Context window
- 1,050,000
- Release date
- 2026-07-09
- Reasoning effort
- nonelowmediumhighxhighmaxDefault: medium
Pricing
Input
$6.1692 / 1M
Cached input
$0.6169 / 1M
Output
$30.8462 / 1M
Cache write
$7.7116 / 1M
Long-context rate (above 272,000 tokens)
Input
$12.3385 / 1M
Output
$46.2693 / 1M
Cached input
$1.2338 / 1M
Cache write
$15.4231 / 1M
Web search
Per successful search
$0.0154 / search
Billed on top of tokens when the model uses web search.
Amounts in Canadian dollars, converted at the Bank of Canada indicative rate (2026-09-21).
Performance
Reading
Last 7 days
Not enough data to display the chart.
Activity
Tokens
—
—
—
—
—
Top 5 tools · last 7 days
Not enough data to display tool activity.
Availability
Availability (%)
Last 7 days
- Operational probes
- 99.98% over 7 days
- Samples
- 9,210
Quick start
Call the API with a tonia_ key and the exact model id below.
curl
curl https://pass.tonia.ca:8443/v1/chat/completions \
-H "Authorization: Bearer $TONIA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.6-sol",
"messages": [
{
"role": "user",
"content": "Bonjour"
}
]
}'Python (OpenAI SDK)
import os
from openai import OpenAI
client = OpenAI(
base_url="https://pass.tonia.ca:8443/v1",
api_key=os.environ["TONIA_API_KEY"],
)
response = client.chat.completions.create(
model="gpt-5.6-sol",
messages=[{"role": "user", "content": "Bonjour"}],
)TypeScript (OpenAI SDK)
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://pass.tonia.ca:8443/v1",
apiKey: process.env.TONIA_API_KEY,
});
const response = await client.chat.completions.create({
model: "gpt-5.6-sol",
messages: [{ role: "user", content: "Bonjour" }],
});