New Sign up free, 10 calls on us. Up to $1, no card needed.

GPT-6 Sol

Released 2026-09-22

chatVisionCodeTool callingReasoningPrompt caching

GPT-6 Sol is the balanced tier of OpenAI's GPT-6 family, released on September 22, 2026 alongside GPT-6 Luna and positioned by OpenAI for complex coding and agentic workflows below the GPT-6 Astra flagship.

Input
text image $2/M
Output
text $10/M
Cache read
$0.2/M
Context
1.1M
vs GPT-4o
~60% cheaper
Knowledge cutoff
2026-04

Prompts over 272K tokens: the whole request bills at $4/M input · $15/M output

Benchmarks

Above averageonly 4 comparable
GPT-6 Sol other models measured peer average no peer scored higher
DeepSWE 1.1
68.8%
OSWorld 2.0 offline set, partial
60.5%
Agents' Last Exam
56.4%

Vendor-published: Alibaba (Qwen) Anthropic DeepSeek Google OpenAI Z.ai

Price in context

Where the price sits among 67 comparable models

Input$2/M
$0.05 · Qwen3 VL Flash GPT-5.4 Pro · $30
Output$10/M
$0.275 · DeepSeek V4 Flash GPT-5.4 Pro · $180
Cached read$0.2/M
$0.0028 · DeepSeek V4 Flash GPT-5.4 Pro · $15

The bar shows how this model’s price compares with every other model of the same kind on Synthorai. The cheapest and the most expensive are named at each end. These are base rates; batch, region and cache-write discounts are on the pricing page.

Specs & limits

Tokens

Context window (vendor spec) 1,050,000
Max output (vendor spec) 128,000
Knowledge cutoff 2026-04

Prompt caching

How it caches automatic
Min prefix 1,024
Lifetime 5-10m, up to 1h

Thinking

Vendor control reasoning.effort
Accepted values none · low · medium · high · xhigh · max
Default medium applied when the request sets nothing
Can be turned off Yes
Parameter reasoning_effort
Values minimal · low · medium · high the gateway's parameter surface - the vendor mapping above applies

Model

Modalities text + image → text

Balanced GPT-6 tier for complex coding and agentic workflows. 1.05M context of which up to 922K can be input, 128K max output. Prompts over 272K input tokens move the whole request onto the long-context rate (2x input and cache, 1.5x output). On Chat Completions, function calling works only with reasoning_effort set to none.

per OpenAI official docs ↗

One prompt, measured through the gateway

PROMPT Explain to a CFO, in exactly three sentences, why our LLM bill doubled after we enabled reasoning. CHECK exactly 3 sentences

GPT-6 Sol passed · 3 sentences

Enabling reasoning made the model generate extra internal tokens to work through each request, and those tokens are billed even though users don’t see them. If request volume stayed roughly the same, more billed tokens per request could explain why the bill doubled. We should check the usage breakdown to confirm, then lower reasoning effort or limit it to tasks that need it.

out 188 tok (+111 thinking) latency 5.0 s

Instruction following (exactly three sentences - countable), audience shaping (CFO register), and the hidden-thinking billing gap the token meters below expose.

PROMPT This function is supposed to return the longest run of consecutive equal items, but callers report it is off by one on single-element inputs and misses runs that end at the last index. Fix it and explain the bug in one paragraph. CHECK fix passes tests

GPT-6 Sol passed · 8/8 cases

```python def longest_run(xs): if not xs: return 0 best = cur = 1 for i in range(1, len(xs)): if xs[i] == xs[i - 1]: cur += 1 else: cur = 1 best = max(best, cur) return best ``` The original `cur` counted matching *adjacent pairs*, not items, so every run was one too short—including a single-element input, which returned 0. Starting each run at 1 counts its first item, and updating `best` on every iteration ensures a run that reaches the last index is included.

out 206 tok (+59 thinking) latency 5.9 s

Whether the fix is actually correct (runnable), explanation density, and token efficiency on a bounded task.

PROMPT Extract a JSON object with fields {company, quarter, revenue_usd_m, growth_pct, guidance} from this text. Use null for anything not stated; add no other fields. CHECK valid JSON, schema exact

GPT-6 Sol passed · 5/5 fields, guidance "Withheld pending the Q4 close"

{"company":"Meridian Robotics","quarter":"September quarter","revenue_usd_m":null,"growth_pct":null,"guidance":"Withheld pending the Q4 close"}

out 227 tok (+185 thinking) latency 5.2 s

Schema obedience (no invented fields), hallucination pressure (guidance is explicitly withheld), and structured-output path differences.

PROMPT Write a 120-word product announcement for an API gateway feature that caches prompts across providers. Forbidden words: "seamless", "unlock", "game-changer", "revolutionize", "empower". Exactly one sentence must be a question. CHECK 120 words, 0 banned words

GPT-6 Sol passed · 120 words, 0 banned, 1 question

Today, we’re introducing cross-provider prompt caching for our API gateway, helping teams reuse repeated prompt content when routing requests among supported AI providers. The gateway identifies eligible prompt prefixes, stores cache references, and applies them to subsequent requests where provider capabilities allow. Why send the same context again if it can be reused? With fewer duplicate input tokens, applications can reduce costs and improve latency without changing how developers call the gateway. Configure caching by route, monitor hit rates and savings in your dashboard, and keep existing provider fallback rules in place. Availability and cache behavior vary by provider, so the gateway reports eligibility and usage for each request. Get started today with our documentation and test your existing workloads.

out 586 tok (+443 thinking) latency 7.7 s

Constraint obedience (word budget, banned-word list, the single question), style fingerprint, and length control.

Use GPT-6 Sol in 30 seconds

OpenAI-compatible: swap the base_url, keep your SDK. POST /v1/chat/completions

from openai import OpenAI

client = OpenAI(
    base_url="https://synthorai.io/v1",
    api_key="sk-syn-...",
)

resp = client.chat.completions.create(
    model="gpt-6-sol",
    messages=[{"role": "user", "content": "Summarize this diff"}],
    reasoning_effort="medium",
)
print(resp.choices[0].message.content)

About GPT-6 Sol

  • OpenAI describes it as bringing much of Astra's strength into a faster, more affordable model.
  • It shares the family's 1,050,000-token context window, of which up to 922,000 tokens can be input, with 128K max output tokens, text and image input, structured outputs, streaming, tool use, prompt caching, and an April 2026 knowledge cutoff.
  • Reasoning effort runs from none to max, with medium as the default.
  • Pricing is split by context length: prompts at or below 272K input tokens bill at the short-context rate, and anything above moves the whole request onto the long-context rate at twice the input and 1.5x the output price, with cached input following the same tier.
  • One upstream restriction is worth planning around: on Chat Completions, function calling works only when reasoning_effort is none, so agent clients that send tools together with reasoning should use the Responses API.
  • Synthorai serves GPT-6 Sol through the same OpenAI-compatible API as the rest of the fleet.

FAQ

Is the GPT-6 Sol API free to try?

Yes: new accounts get 10 trial calls and up to $1 in free credit, no card required. At $2/M input tokens, that credit alone covers roughly 62 requests of ~8K tokens against GPT-6 Sol.

What is GPT-6 Sol best at?

Balanced GPT-6 tier for complex coding and agentic work; 1.05M context, 128K output, reasoning effort none to max; short- and long-context pricing split at 272K input tokens. See the About section for the full picture from the vendor's own release notes.

How much does GPT-6 Sol cost?

GPT-6 Sol costs $2 per million input tokens and $10 per million output tokens on Synthorai. That is the provider's list price, with no platform markup. Cached input tokens bill at $0.2/M.

Does GPT-6 Sol support prompt caching?

Yes, automatically: OpenAI-served prompts cache with no code changes. Cached input tokens bill at $0.2/M vs $2/M uncached; prompts need a 1,024-token stable prefix to cache (TTL 5-10m, up to 1h). Prompt caching guide →

How do I get access to GPT-6 Sol?

Point your existing OpenAI SDK at base_url="https://synthorai.io/v1", set model="gpt-6-sol", and you're done. One API key covers every model on the gateway.

What is GPT-6 Sol's knowledge cutoff?

GPT-6 Sol's knowledge cutoff is 2026-04, per the vendor's official documentation (as of 2026-09-23).

Related models

Compare

Every value on this page is transcribed from the vendor's own documentation, linked above, and carries the date it was checked. Prices are compared across the catalogue; specification values that vendors define differently are shown with the difference stated rather than charted. Nothing here is measured by us, and nothing is scored.

Get your API key Compare your cost →