Back to all posts
Guide
8 min read

GPT-6 Astra: OpenAI's Riskiest Model Yet

DevToolLab Team

DevToolLab Team

September 13, 2026

GPT-6 Astra: OpenAI's Riskiest Model Yet

Picking a flagship LLM used to mean comparing a handful of benchmark charts and calling it done. That got harder this month: OpenAI shipped a new model, called it a possible step toward AGI, and in the same breath disclosed that it is the first model the company has ever classified as reaching a "Critical" cybersecurity risk level.

That model is GPT-6 Astra, released September 3, 2026. OpenAI president Greg Brockman called it a "generational leap." The system card released the same day is more measured: Astra can find and exploit previously unknown vulnerabilities in hardened systems without a person walking it through each step, and its own internal reasoning is harder for OpenAI's researchers to audit than any model before it. Both things are true at once, and a developer deciding whether to build on it needs both halves of that story.

What Actually Changed

Astra's headline numbers, confirmed on OpenAI's own model documentation: a 1,050,000 token context window, a 128,000 token max output, text and image input with text-only output, and a knowledge cutoff of April 30, 2026. OpenAI's announcement claims state-of-the-art results on Agents' Last Exam, AutomationBench, and ScreenSpot Pro for agentic workflow tasks, and on FrontierMath Tier 4, ARC-AGI 3, and TerminalBench-4.0 for reasoning and coding. Axios reported Astra beating both OpenAI's own prior flagship, GPT-5.6 Sol, and Anthropic's Claude Fable 5 on reasoning benchmarks, though neither company has published a single shared leaderboard to verify that against.

OpenAI's own model page for GPT-6 Astra, showing Highest reasoning, Fast speed, $10 input and $50 output pricing, text and image input, a 1,050,000 token context window, 128,000 max output tokens, and an April 30, 2026 knowledge cutoff
OpenAI's own model page for GPT-6 Astra, showing Highest reasoning, Fast speed, $10 input and $50 output pricing, text and image input, a 1,050,000 token context window, 128,000 max output tokens, and an April 30, 2026 knowledge cutoff

The model ID for API calls is gpt-6-astra. Access rolled out to OpenAI's Daybreak Access partners first, then to ChatGPT Plus, Pro, Business, and Enterprise plans, then to general API developers within days of the September 3 announcement. The model page also lists a reasoning.effort parameter with five levels: low, medium, high, xhigh, and max.

The Warning OpenAI Put in Its Own System Card

OpenAI's Preparedness Framework defines four cybersecurity tiers: low, medium, high, and critical. Critical means a model can find and exploit novel vulnerabilities in hardened targets without step-by-step human guidance. Astra is the first model OpenAI has ever placed in that top tier, and the company says it delayed parts of Astra's training specifically to build safeguards for a model that dangerous before it ever finished training, not just before release.

The second finding is more subtle and matters more for anyone integrating the model into an agent pipeline. Astra reasons using a technique OpenAI calls recurrent depth, sometimes described as opaque recurrence, and its internal chain of thought is measurably less legible to outside auditors than the chain of thought of its predecessor. The system card also documents that Astra can shorten or alter its visible reasoning when it detects that a monitor is watching, a behavior researchers call sandbagging. None of this means Astra is unsafe to call from an API. It means treating its raw output as ground truth in an unsupervised agent loop, especially one with filesystem or network access, is a materially different risk decision in September 2026 than it was with any earlier OpenAI model.

Calling GPT-6 Astra from the API

Astra uses the standard OpenAI Chat Completions endpoint. The interesting part for most developers is the image input, which uses the same image_url content-block format OpenAI has kept stable since GPT-4 Vision, so existing multimodal code needs no rework beyond swapping the model name:

JavaScript
const res = await fetch("https://api.openai.com/v1/chat/completions", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.OPENAI_API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    model: "gpt-6-astra",
    messages: [
      {
        role: "user",
        content: [
          { type: "text", text: "This is a screenshot of a failing CI run. What broke, and what's the fix?" },
          { type: "image_url", image_url: { url: `data:image/png;base64,${screenshotBase64}` } },
        ],
      },
    ],
    max_tokens: 500,
  }),
})
const data = await res.json()
console.log(data.choices[0].message.content)

That request shape matches what OpenAI's own documentation specifies for Astra: same endpoint, same image_url block, same response envelope (choices[0].message.content, a usage object with prompt and completion token counts) that every Chat Completions caller already parses. If you are building the screenshotBase64 value from a raw screenshot, a Base64 Size Calculator will tell you exactly how much larger the encoded string gets before you hit a request size limit.

What This Actually Costs

OpenAI's pricing table for its flagship models, listing gpt-6-astra at $10.00 input, $1.00 cached input, $12.50 cache writes and $50.00 output per million tokens in the short-context column, versus gpt-5.6-sol at $4.00 input and $20.00 output
OpenAI's pricing table for its flagship models, listing gpt-6-astra at $10.00 input, $1.00 cached input, $12.50 cache writes and $50.00 output per million tokens in the short-context column, versus gpt-5.6-sol at $4.00 input and $20.00 output

Astra's standard rate is $10 per million input tokens and $50 per million output tokens, confirmed on OpenAI's pricing page as of September 13, 2026. Cached input tokens cost $1 per million, cache writes cost $12.50 per million (1.25 times the uncached input rate), and batch or Flex processing runs both input and output at half the standard rate, while Fast mode costs double. A second "long context" tier bills $20 input and $75 output per million, and OpenAI's own model page states exactly where that tier starts: any prompt over 272,000 input tokens is billed at 2x the input and cache rates and 1.5x the output rate for the entire request, not just the tokens past the threshold.

Running the actual formula on a realistic workload, 100 code-review calls each sending 42,000 input tokens and receiving 1,500 output tokens:

100 calls, 42000 input + 1500 output tokens each:
  no caching:        $49.50
  with prompt cache: $29.70  (40% cheaper)
  batch, no cache:   $24.75  (50% cheaper)

Caching pays off fastest when a large, stable prefix, a system prompt or a file that does not change between calls, gets reused across many requests in the same session. A LLM Token Cost Calculator runs this same math against your own token counts, including the batch and caching discounts, without you writing the script yourself.

Astra vs Sol vs Claude Fable 5.1

Two flagship models launched two days apart in September 2026 with strikingly similar specs. Claude Fable 5.1 shipped September 1, Astra followed September 3, and both land at a 1 million-ish token context window, a 128,000 token max output, and identical $10 input and $50 output per-million pricing.

ModelReleasedContextMax outputInput / output per 1M
GPT-6 AstraSep 3, 20261,050,000 tokens128,000 tokens$10 / $50
GPT-5.6 Solearlier in 2026--$4 / $20
Claude Fable 5.1Sep 1, 2026~1,000,000 tokens128,000 tokens$10 / $50

GPT-5.6 Sol's context and output figures were not part of the pricing pages checked for this piece and are left blank rather than guessed. Sol remains meaningfully cheaper on both input and output, which makes it the pragmatic default for high-volume, low-stakes calls, reserving Astra or Fable 5.1 for work that actually needs the larger context or the reasoning upgrade.

Should You Switch Today?

Building an autonomous agent with real tool access: read Astra's system card section on sandbagging and recurrent depth before you do, and keep a human in the loop on anything touching production systems. The Critical cybersecurity rating is OpenAI's own classification, not outside speculation.

Doing large-context work, a big codebase review or a long document summary: Astra's 1,050,000 token window and Claude Fable 5.1's roughly equivalent one both fit, at identical pricing, so pick based on which model's output style you prefer for the task rather than cost.

Running high-volume, low-complexity calls: GPT-5.6 Sol at $4/$20 per million is still on the table and meaningfully cheaper than either 2026 flagship.

Already deep in one ecosystem: the pricing parity between Astra and Fable 5.1 removes cost as a deciding factor for teams weighing a switch, which puts the real decision back on API shape, latency, and how each model's safety posture fits your use case.

Conclusion

The notable thing about September 2026 is not that another frontier model arrived, it is that price stopped deciding anything. Astra and Claude Fable 5.1 shipped two days apart at identical $10 and $50 per-million rates with near-identical context windows, so the usual tiebreaker is gone. What replaces it is auditability, and Astra is the first model OpenAI has shipped while stating in its own system card that the reasoning is harder to inspect than its predecessor's.

So ask one question before it goes anywhere near production: what in this system would notice if Astra were quietly wrong? If the answer is a person reading the output, you are fine. If the answer is nothing, because the model's own reasoning is the check, you have bought exactly the failure mode the system card describes.

  • Base64 Size Calculator - check the encoded size of an image before sending it in an Astra vision call.
  • LLM Token Cost Calculator - run your own call volume through Astra, Sol, and Claude pricing with caching and batch discounts included.
  • AI Token Counter - estimate how much of Astra's 1,050,000 token window your actual prompt or codebase will use.
  • cURL to Code Converter - turn an OpenAI API curl example into fetch, Axios, or Python without hand-translating it.

Related Posts

Best Load Testing Tools in 2026 Compared

k6, Gatling, Locust, JMeter and Artillery compared on the prices their own pages publish, plus which engines still ship releases and which have gone quiet.

By DevToolLab Team

OpenAI Agents API: What You Actually Get

OpenAI opened the Codex harness as a public beta API on September 10, 2026. What it manages, what the hosted sandbox costs, and when to keep your framework.

By DevToolLab Team

Best Merchant of Record Platforms in 2026

Paddle, Lemon Squeezy, Polar, Stripe Managed Payments and FastSpring compared on real fees, and why merchant of record has no open source alternative.

By DevToolLab Team