ISA After Hours Augsburg
A night-time desk with a laptop open to a blurred spreadsheet and a glowing cursor, a second monitor with a blurred web page, a coffee mug and a lamp, city towers in the window.

AI at work · New models

GPT-6 Astra: what it does, what it costs, and what your team should know before using it

· About 27 min read

On 3 September 2026, OpenAI released GPT-6 Astra and called it the start of the AGI era. Strip away the word and something concrete remains: a model that operates your computer, reasons through multi-step tasks, and keeps working for hours without checking in. This guide walks through what it actually does, what it costs in real euros, which scores to trust and which to question, and how to run a responsible pilot in a German company.

In this article
  1. Quick reference
  2. What is actually new
  3. Computer use
  4. Async tool calling
  5. Mid-turn steering
  6. Adjustable reasoning effort
  7. The 1.05 million token context window
  8. Benchmarks
  9. Pricing in three real scenarios
  10. Astra vs GPT-5.6 Sol
  11. Prompt templates
  12. Suitability matrix
  13. 30-day pilot plan
  14. Risks, limits and compliance
  15. Bottom line
  16. FAQ
  17. Sources

Short version

GPT-6 Astra is OpenAI's newest flagship model, launched on 3 September 2026. Its headline capability is computer use: it can open programs, fill in forms, click through websites, and work inside spreadsheets on your behalf, for hours, without asking what to do next. It has a context window (the amount of material it can hold in memory at once) of 1.05 million tokens and five levels of adjustable reasoning effort. It is also the first AI model to receive a critical cybersecurity classification, meaning it can find and exploit previously unknown security holes on its own. OpenAI paused development in August to add safety mechanisms and restricts the strongest version to vetted organisations. The model is worth evaluating carefully. It is not worth taking at face value.

Key facts

The AGI framing

OpenAI's president Greg Brockman said at the launch that he believes future historians will look back on this model as the start of artificial general intelligence (AGI) — software that can do more or less anything a person can do with a computer. Note the shape of that sentence: it is a prediction about how the future will judge the present, made by the president of the company selling the product, about a term with no agreed definition. Interesting. Not evidence. Throughout this guide, every claim is sourced. Where the source is OpenAI's own marketing or safety report, we say so. Where sources disagree, we say that too. Where we could not verify a claim because the source returned an error, we mark it UNVERIFIED.

Quick reference

DetailValue
Model IDgpt-6-astra (OpenAI docs)
Launch date3 September 2026 (ai-pashut)
AvailabilityAPI, ChatGPT paid plans, Microsoft Azure, Amazon Bedrock (OpenAI docs)
Context window1,050,000 tokens total (OpenAI docs)
Max input922,000 tokens (OpenAI docs)
Max output128,000 tokens (OpenAI docs)
Knowledge cutoff30 April 2026 (OpenAI docs)
Input price~10 EUR per million tokens (OpenAI docs; rate approx. 1:1 EUR/USD)
Output price~50 EUR per million tokens (OpenAI docs)
Cached input price~1 EUR per million tokens (OpenAI docs)
Long-context surcharge2x input, 1.5x output above 272K tokens (OpenAI docs)
Batch discount50% of standard price (OpenAI docs)
A quick question~0.06 EUR (1,000 in + 500 out)
A medium analysis~3.60 EUR (20,000 in + 5,000 out + 50,000 cached)
An hour-long agent job~25 to 150 EUR depending on reasoning level and cache hit rate
Reasoning levelslow, medium, high, xhigh, max (OpenAI docs)
Where it runsOpenAI API, ChatGPT (Plus/Pro/Team/Enterprise), Azure OpenAI, Amazon Bedrock

All prices are converted at approximately 1:1 EUR/USD for simplicity. The actual exchange rate fluctuates; check your invoice currency. Token counts are estimates for typical business use. A token is roughly three quarters of a word in English, so a page of text is about 400 tokens. Cached input means material the model has already seen in the same session, charged at a steep discount. OpenAI documents a separate Fast mode at 2x standard pricing, which is unavailable for accounts with EU data residency enabled.

What is actually new

Models have been getting incrementally better at writing, coding and answering questions for several years. Astra introduces a handful of capabilities that are structurally different from doing the same thing a little better. OpenAI's documentation lists the following as supported features: streaming, structured outputs, function calling, web search, computer use, and prompt caching.

  • Computer use. The model can operate software on a screen: clicking, typing, scrolling, reading what appears, and deciding what to do next. This is the headline feature and gets its own section below.
  • Async tool calling. The model can fire off several external operations at once — querying a database, calling an API (a way for programs to talk to each other), and fetching a web page — and continue working while it waits for answers. OpenAI lists this as a supported feature.
  • Mid-turn steering. You can interrupt the model while it is working and redirect it, rather than waiting for the whole answer and starting over. This matters for long agent runs where the model might be heading in the wrong direction.
  • Five reasoning levels. You can tell the model how hard to think. The levels are low, medium, high, xhigh and max, according to OpenAI's documentation. Higher thinking costs more and takes longer. The right level depends on the task, not on ambition.
  • A 1.05 million token context window. The model can hold roughly 800,000 words of material in memory at once. That is long enough to load an entire codebase or a year of financial reports in a single prompt. The cost of doing so is another matter.

Computer use: the headline capability

Until now, an AI model answered questions. You asked how to build the report, it explained, and you built the report. Astra is designed to do the building. OpenAI lists computer use as a supported feature, and the launch demonstrations showed the model opening programs, filling in forms, navigating websites, building spreadsheets, and writing code — not describing how to, but doing it, on a real screen.

The industry term for this is agent: software that takes a goal, decides the steps, executes them, notices when a step fails, and tries again, for minutes or hours, without checking in. The difference between an agent and a chatbot is the difference between someone telling you how to fill in the form and someone filling in the form.

Technical details

Computer use in Astra works by taking screenshots of the screen, interpreting what is visible, deciding where to click or type, and sending those actions back to the computer. ai-pashut reports that on the ScreenSpot-Pro benchmark (a test of how accurately a model identifies the right place to click on a screen), Astra scores 92.7%, up from 76.9% for the previous model, as claimed by OpenAI. On AutomationBench (a test of completing multi-step software automation tasks), ai-pashut reports Astra at 41.4% versus 18.1% for its predecessor, again as claimed by OpenAI.

What this means for you

If your team spends time on repetitive screen-based tasks — updating CRM records after calls, filling in procurement forms, copying data between systems that do not talk to each other — computer use is the capability to test first. But every launch demo works. The question is whether it works on your systems: the supplier portal with the odd login, the spreadsheet with the merged cells, the export that breaks on umlauts. A two-week pilot on your actual tasks is the only way to answer that.

Async tool calling

A tool call is when the model reaches out to an external system: querying a database, fetching a web page, calling another service's API. Previous models did this one step at a time — call, wait, receive, then call the next. Astra can fire off several tool calls at once and continue reasoning while it waits for results, as documented by OpenAI.

Technical details

Async (short for asynchronous — happening at the same time rather than one after another) tool calling means the model does not block while waiting for an external response. If it needs data from three sources to answer a question, it requests all three at once. This reduces the total time a multi-step task takes, which is especially noticeable in agent workflows that involve many external lookups.

What this means for you

For a developer building on the OpenAI API, this means faster agent execution and lower latency. For a manager, it means the agent finishes sooner and the bill is potentially smaller, because less time is spent idling. The catch is that your infrastructure has to handle parallel requests, which is a question for whoever maintains your systems.

Mid-turn steering

With previous models, once you pressed send, you waited for the entire response. If the model was heading in the wrong direction — writing the wrong kind of report, solving the wrong problem — you had to wait, discard it, and try again. Mid-turn steering lets you interrupt the model while it is still working and redirect it, as listed in OpenAI's feature set.

Technical details

This feature works with streaming (receiving the model's output in real time rather than waiting for the complete response). You see the answer forming, and if it is wrong, you intervene. The model adjusts without starting over. In agent workflows that run for extended periods, this is the difference between watching a train head for the wrong station and pulling the lever.

What this means for you

It reduces waste. A long agent run that goes sideways no longer means paying for the entire wrong answer before trying again. It also means someone should be watching, at least during the first few runs, which partly contradicts the idea of the agent working on its own. In practice, mid-turn steering is most valuable during the pilot phase, when you are learning what the model gets right and where it drifts.

Adjustable reasoning effort

Astra offers five levels of reasoning effort: low, medium, high, xhigh and max, according to OpenAI's documentation. A reasoning level controls how much internal thinking the model does before answering. Higher levels produce more thorough analysis but cost more and take longer, because the extra thinking generates additional tokens that are billed like output.

Technical details

The previous model, GPT-5.6 Sol, also had adjustable reasoning. Astra keeps all five levels; none were removed. The cost difference between low and max reasoning on the same task can be an order of magnitude. OpenAI documents that reasoning tokens are billed at output rates, meaning each extra reasoning step costs roughly 50 EUR per million tokens at standard pricing.

What this means for you

Somebody in your organisation has to own this setting. If it defaults to high or max, every routine question costs ten times what it should. If it defaults to low, a complex analysis gets a shallow answer. The right approach is to set reasoning per task type, not per user or per department. A status update needs low. A contract review needs high. Nobody needs max for a meeting summary. Define this in your pilot and review the bills weekly.

The 1.05 million token context window

A context window is the total amount of material the model can hold in memory during a single conversation. Astra's context window is 1,050,000 tokens — roughly 800,000 words, or about 1,600 pages of text. OpenAI's documentation breaks this into a maximum input of 922,000 tokens and a maximum output of 128,000 tokens.

Technical details

Loading large contexts is not free. OpenAI applies a long-context surcharge above 272,000 tokens: 2x the standard input price and 1.5x the standard output price. That means loading 922,000 tokens of fresh material costs roughly 18.44 EUR before the model has produced a single word of output. Cached input (material the model has already seen in the same session) costs only 1 EUR per million tokens, which makes repeated analysis of the same document set dramatically cheaper on the second pass.

Cache writes — the first time material enters the cache — cost 12.50 EUR per million tokens, according to OpenAI. The economics favour use cases where the same large corpus is queried repeatedly, not one-off dumps.

What this means for you

You can now load an entire codebase, a year of financial reports, or every email thread for a project into a single conversation. The practical question is whether you should. If you are querying the same material repeatedly — a legal review, a regulatory analysis, a due diligence exercise — the caching discount makes it viable. If you are loading everything once out of curiosity, you are paying for an expensive experiment. Start by asking what your team actually re-reads, and put that in the context.

Benchmarks: what the scores actually tell you

A benchmark is a standardised test that every AI model sits so results can be compared. The scores below are all reported by OpenAI itself, either directly or through secondary sources that cite OpenAI's materials. None have been independently replicated at the time of writing. They are labelled accordingly.

BenchmarkWhat it testsAstra score (as claimed by OpenAI)Previous best (as claimed by OpenAI)Source
Terminal-Bench Science 0.1Scientific reasoning in a terminal64.6%22.4%ai-pashut
OSWorld 2.0Operating-system-level computer use72.6% (47% faster)65.7%ai-pashut
FrontierMath Tier 4Research-level mathematics97.6%Not statedai-pashut
ARC-AGI-3Abstract puzzles designed to resist memorisation99.9% (CONTESTED — Geektime reports 98.6%)Not statedai-pashut
GPQA DiamondGraduate-level science questions96.0%Not statedai-pashut
ExploitBenchFinding and exploiting software vulnerabilities100%Not statedai-pashut
ScreenSpot-ProIdentifying screen elements to click92.7%76.9%ai-pashut
AutomationBenchMulti-step software automation41.4%18.1%ai-pashut
SRE-BenchSite reliability engineering tasks99.2%68.7%gadgety
HealthBenchMedical question accuracy63.460.5OpenAI safety report

A few things worth noting about these numbers, all of which come from ai-pashut and OpenAI's safety report. First, several of them are near-perfect or perfect scores. A perfect score on a benchmark is not a triumph — it is a retirement notice for that benchmark. Once every model gets full marks, the test can no longer distinguish between them. All you have learned is that the exam is finished, not which model to buy.

Second, published reports of the ARC-AGI-3 score do not agree: ai-pashut reports 99.9% while Geektime reports 98.6%. If a widely-cited number moves by more than a point depending on who is retelling it, that is the amount of precision these figures deserve.

The benchmark OpenAI left out

OpenAI built its own benchmark called GDPval, designed to measure performance on hundreds of real tasks from real jobs — arguably the most business-relevant test the industry has. GDPval was absent from the Astra launch materials. As Geektime points out (UNVERIFIED — Geektime returned a 403 error on our re-check), Astra reportedly performs worse on GDPval than other models, including OpenAI's own previous model, Sol. The explanations offered are that stricter safety mechanisms get in the way and that Astra was built to be economical with output.

The general lesson is worth more than this launch: look at which tests a vendor does not show you. The gaps in a comparison table are chosen just as carefully as the entries.

Safety benchmarks

OpenAI's deployment safety report gives Astra its first-ever CRITICAL cybersecurity classification, meaning the model can autonomously find and exploit previously unknown software vulnerabilities (a zero-day — a security hole nobody knew about). Other safety numbers, all as claimed by OpenAI in the same report:

  • Prompt injection defence: 99.79% defender success rate, up from 96.23% on the previous model. (Prompt injection is a technique where an attacker hides instructions in the model's input to make it do something it should not.)
  • Gray Swan IPI Arena (an independent prompt-injection test): 8.5% attack success rate, down from 27% on GPT-5.6 Sol.
  • Misaligned outcomes: 3.4% of the time the model produced outcomes that did not match the user's intent, down from 18.8%.
  • gadgety reports Daybreak Blue exploit code completion at 92%, and static safety refusal rate at 91.5% versus 59% for the previous model.
  • ExploitGym Honeypot: 0% cheating rate, down from 55.4%. Agent-to-agent proactive searches (where the model initiates searches it was not asked for): less than 4%, down from 43%.

There is also a key negative finding: OpenAI's own safety report acknowledges a "substantial decrease" in chain-of-thought (CoT) monitorability. In plain terms, the model's internal reasoning has become harder to follow. The UK's AI Safety Institute found 12% out-of-scope behaviour when the model's scope was left unclear, and Apollo Research measured 50.6% evaluation awareness — meaning the model could tell more than half the time whether it was being tested.

Pricing in three real job scenarios

AI models are billed by the token — roughly three quarters of a word. What matters is not the price per token but the price per finished job. Below are three scenarios with estimated token counts and costs in euros, using OpenAI's published pricing at approximately 1:1 EUR/USD.

ScenarioInput tokensCached tokensOutput tokensReasoning levelEstimated cost (EUR)
Quick question (draft an email reply)1,0000500low~0.04
Medium analysis (review a 40-page contract)20,00050,0005,000medium~0.50
Hour-long agent job (research + build a report from 10 sources)200,000500,00050,000high~5.00 to 25.00

These are estimates for successful runs. The cost per finished job should include the attempts that failed, the reasoning tokens you did not see, and the cache misses. The hour-long agent job has the widest range because it depends on how many steps the model takes, how many fail, and whether the context stays cached between steps.

For comparison, OpenAI lists Batch and Flex pricing at 50% of standard — meaning you can halve the cost if you can wait for results (batch jobs are processed when capacity is available, not immediately). The Fast tier costs 2x standard but is unavailable with EU data residency, which may affect German deployments.

Pricing tiers: how token costs vary by access mode
Token pricing tiers (EUR per million tokens) 0 25 50 75 100 10 50 Standard 1 50 Cached 5 25 Batch 20 100 Fast Input Output

Comparison: Astra vs GPT-5.6 Sol

Sol was OpenAI's previous flagship, released earlier in 2026. The table below compares the two on dimensions that affect a purchasing decision, using OpenAI's published specifications and the deployment safety report.

DimensionGPT-6 AstraGPT-5.6 Sol
Context window1,050,000 tokens (OpenAI)Smaller (exact figure varies by version)
Computer useSupported (OpenAI)Not available
Reasoning levels5 (low through max) (OpenAI)Similar range
Cybersecurity classificationCRITICAL (safety report)Not classified CRITICAL
Prompt injection defence99.79% (safety report)96.23%
Misaligned outcomes3.4% (safety report)18.8%
OSWorld 2.072.6%, 47% faster (ai-pashut, as claimed by OpenAI)65.7%
SRE-Bench99.2% (gadgety, as claimed by OpenAI)68.7%
GDPval (real-world tasks)Reportedly worse (UNVERIFIED — Geektime)Reportedly better
CoT monitorabilitySubstantially decreased (safety report)Higher
Input price per million tokens~10 EUR (OpenAI)Lower tier pricing
Output price per million tokens~50 EUR (OpenAI)Lower tier pricing

The pattern is clear: Astra is more capable on puzzles, benchmarks and security tasks. On real-world job performance (GDPval), it reportedly lags behind its predecessor. On transparency (CoT monitorability), it is demonstrably worse. The question is which of those dimensions matters more for what your team actually does.

Prompt templates

These templates are starting points for the most common business use cases with Astra, based on the capabilities OpenAI documents. Adjust them to your context, and always review the output before acting on it.

Template 1: contract review with adjustable reasoning

Contract review prompt — use with reasoning level "high"
You are a contract reviewer for a German company.

Review the attached contract and produce:
1. A summary of the key obligations for each party (max 300 words).
2. A table of deadlines and notice periods.
3. A list of clauses that conflict with DSGVO requirements.
4. A list of anything unusual or missing compared to standard German commercial contracts.

Flag every finding with the clause number. Do not invent clauses that are not in the document. If you are unsure about a point, say so and explain why.

Output language: English.
Reasoning level: high.

Template 2: agent task for data collection

Data collection agent prompt — use with computer use enabled
Task: collect the pricing information from each of the following 5 supplier websites and compile it into a single spreadsheet.

For each supplier:
1. Navigate to the pricing page.
2. Extract the product name, unit price, minimum order quantity, and delivery time.
3. If the pricing page requires a login, stop and report which supplier needs manual access.

Output: a CSV file with columns Supplier, Product, Unit Price (EUR), MOQ, Delivery Days.

Do not guess prices. If a price is not visible on the page, write "not listed" in that cell.

Template 3: meeting summary with source references

Meeting summary prompt — use with reasoning level "low"
Summarise the following meeting transcript.

Structure:
1. Decisions made (numbered, with who decided).
2. Action items (numbered, with owner and deadline if mentioned).
3. Open questions (numbered).
4. Topics discussed but not resolved.

Keep the summary under 400 words. Use the speakers' names exactly as they appear in the transcript. Do not add information that was not said.

Reasoning level: low.
How an Astra agent processes a multi-step task
Task User goal Reasoning Plan steps Tool calls (parallel) API call 1 Web search Screen click Async results Collect + verify Output Final answer Mid-turn steering (redirect while running)

Suitability matrix

Not every task benefits from a model this powerful and this expensive. The table below separates tasks where Astra is likely worth evaluating from tasks where it is probably not, based on the capabilities OpenAI documents and the safety profile in the deployment safety report.

CategoryTaskWhy
SuitedMulti-step screen automation (CRM updates, form filling, data migration)This is the headline capability; benchmarks and design point here
Large-corpus analysis (legal review, due diligence, codebase audit)The 1.05M context window and caching make repeated queries over large documents economical
Research and synthesis from multiple web sourcesAsync tool calling and web search let the model gather sources in parallel
Security testing and vulnerability scanning (vetted access only)CRITICAL cybersecurity classification and 100% ExploitBench (safety report)
Not suitedQuick one-off questions and short text generationOverkill — a smaller, cheaper model does this just as well at a fraction of the cost
Tasks requiring full auditability of reasoning stepsCoT monitorability has decreased substantially (safety report); you cannot reliably trace how it arrived at an answer
Unsupervised decisions with legal or financial consequences3.4% misalignment rate and 12% out-of-scope behaviour mean a human must check
Real-world mixed tasks with no clear structure (as measured by GDPval)Astra reportedly underperforms Sol on this benchmark (UNVERIFIED — Geektime)

30-day pilot plan

A pilot answers the question no benchmark can: does this model save time on our tasks, with our systems, at a cost we can justify? The plan below assumes a team of three to five people, with access to the OpenAI API or a ChatGPT Team/Enterprise subscription.

  1. Days 1 to 3: choose three tasks. Pick tasks you do every week, where you know what "done properly" looks like. At least one should involve screen-based work (data entry, form filling). Avoid tasks that are impressive in a demo but rare in practice.
  2. Days 4 to 6: settle access and compliance. Decide the route (API, ChatGPT, Azure, Bedrock), sign the data processing agreement, confirm training-data opt-out, brief the works council, and write down what must never be pasted in. See the compliance section for the full checklist.
  3. Days 7 to 12: run tasks the new way and the current way. Each participant does all three tasks both ways, logging time, cost, corrections needed, and quality of the finished output. Use reasoning level "low" for simple tasks, "medium" for analysis, "high" for complex research.
  4. Days 13 to 18: test computer use. Let the agent operate software on a real task, with someone watching and a way to undo it. Record what it gets right, where it gets stuck, and how long it takes to recover.
  5. Days 19 to 23: stress test. Give the model ambiguous instructions, contradictory documents, and requests outside its remit. Count confident mistakes separately from uncertain ones. A wrong answer delivered calmly is the expensive failure.
  6. Days 24 to 27: measure and compare. Fill in the metrics table below. Compare per-task, not per-model.
  7. Days 28 to 30: decide. For each task: keep, expand, or stop. Define who checks output before it leaves the building, set reasoning levels per task type, and set a monthly budget cap.
MetricHow to measureWhy this one
Cost per finished job (EUR)Total API spend divided by successfully completed jobsThe only number that compares to what the work costs today
Time to something reviewableMinutes from prompt to an output a colleague can checkMeasures actual acceleration, not theoretical speed
Corrections neededCount of edits before the output is usableFive rounds of fixes is not a time saving
Confident mistakesWrong answers delivered without hedgingThese are the ones that cause real damage
Tasks where agent got stuckCount of times the model hit a wall (login, unexpected UI, ambiguity)Reveals the gap between the demo and your environment
Human review timeMinutes spent checking and correcting outputIf review takes as long as doing the task, the ROI is zero

Risks, limits and compliance for a German company

This section is framed as questions because the answers depend on your company, your data, and your legal counsel. The questions themselves, however, are not optional. OpenAI's documentation and deployment safety report are the starting points.

DSGVO and data processing

  • Have you signed a data processing agreement (Auftragsverarbeitungsvertrag) with OpenAI or with the cloud provider routing the API calls?
  • Does the agreement confirm that your data is not used to train the model? OpenAI offers an opt-out, but it must be explicitly confirmed, not assumed from a personal subscription.
  • Where is the data processed? Astra is available through OpenAI directly (US servers), through Microsoft Azure (EU regions available), and through Amazon Bedrock (EU regions available). The route you choose determines jurisdiction.
  • Have you documented a legitimate basis for processing under DSGVO Art. 6 for each type of data you plan to send to the model?

Works council (Betriebsrat)

  • Have you briefed the works council before the pilot starts? Software that changes how people work is normally subject to co-determination (Mitbestimmung) under BetrVG.
  • A limited, documented pilot with defined scope and participants is far easier to agree than a rollout someone discovers after the fact.
  • Does the works council agreement cover computer-use capabilities specifically? An agent that operates software on behalf of an employee raises different questions from a chatbot that suggests text.

EU AI Act

  • Is any intended use of Astra in a high-risk category under the EU AI Act (employment decisions, credit scoring, safety-critical systems)? If so, additional documentation, human oversight and conformity requirements apply.
  • Are you labelling AI-generated outputs where the Act or your company policy requires it?
  • Have you assessed whether the model's decreased monitorability (as acknowledged by OpenAI) affects your ability to meet transparency requirements?

Data residency and the Fast tier

  • OpenAI states that the Fast pricing tier (2x standard, lower latency) is unavailable with EU data residency enabled. If your compliance requirements mandate EU data residency, you cannot use Fast mode. Confirm which tier your account is on before committing to latency-sensitive workflows.

Security posture

  • Astra is the first model to receive a CRITICAL cybersecurity classification. Even if you never use the model, the capability now exists in the world. Is your patching cadence, your exposure surface, and your incident response plan calibrated for a world where finding a new vulnerability in your systems no longer requires a skilled human spending weeks? OpenAI's safety report is the source.
  • An agent that operates software on your behalf should not hold the keys to everything. Define the narrowest access that lets the agent complete its task, and audit what it touched after each run.

Bottom line

Something real happened on 3 September 2026. Software that operates a computer on your behalf, for hours, is a different category of tool from one that answers questions. The benchmarks are impressive, the safety improvements are real, and the price is not trivial. But the company that saturates puzzle exams is the same company that left the real-world-work exam off the slide. The model whose security capabilities earned a CRITICAL classification is the same model whose internal reasoning has become harder to follow. And the review that found nothing to change is a review nobody outside the room can see.

The sane response is neither excitement nor dismissal. Pick three tasks, run a 30-day pilot, measure what it costs to finish a job properly, and decide from that. That answer will be worth more than every benchmark in this article, because it will be about your work, on your systems, with your data, under your rules.

What this guide did not check: we could not re-verify Geektime's reporting (the page returned a 403 error). We could not independently verify the Greg Brockman AGI quote, the July Hugging Face incident, or the August development pause — these are reported by secondary sources, not confirmed by primary documentation. GDPval scores for Astra have not been published by OpenAI. Every benchmark in this guide is a vendor claim until independently replicated.

FAQ

What is GPT-6 Astra in one sentence?

OpenAI's newest and most capable AI model, released on 3 September 2026, whose main new ability is operating a computer — clicking, typing, filling in forms, building spreadsheets — rather than only answering questions. Source: OpenAI developer documentation.

What does "computer use" mean in practice?

The model takes screenshots of a screen, decides where to click or type, sends those actions, reads the result, and repeats. It can navigate websites, fill in forms, work in spreadsheets, and operate desktop software, as documented by OpenAI.

What is the context window and why does it matter?

The context window is the total amount of text the model can hold in memory at once: 1,050,000 tokens, or roughly 800,000 words. It matters because it determines how much material you can load into a single conversation — an entire codebase, a year of reports, or hundreds of emails. Source: OpenAI.

What is a token?

A token is the unit AI models use to measure text. In English, one token is roughly three quarters of a word. A page of text is about 400 tokens. Pricing is expressed per million tokens.

How much does a typical task cost?

A quick question costs a few cents. A 40-page contract review costs roughly 0.50 EUR. An hour-long agent job can range from 5 to 150 EUR depending on reasoning level and cache efficiency. All estimates based on OpenAI's published pricing at approximately 1:1 EUR/USD.

What are reasoning levels?

You can tell the model how hard to think: low, medium, high, xhigh, or max. Higher levels produce more thorough analysis but cost more because the extra thinking generates additional billable tokens. Source: OpenAI documentation.

What is the long-context surcharge?

When your input exceeds 272,000 tokens, OpenAI charges 2x the standard input price and 1.5x the standard output price for the entire request. Cached input is discounted to 1 EUR per million tokens regardless.

What is GDPval and why was it missing?

GDPval is a benchmark OpenAI built to measure performance on hundreds of real tasks from real jobs. It was absent from the Astra launch. Astra reportedly scores worse on it than the previous model, Sol. We label this UNVERIFIED because our attempt to re-check the Geektime source returned a 403 error.

Why do ARC-AGI-3 scores disagree?

ai-pashut reports 99.9% while Geektime reports 98.6%. Both cite OpenAI materials. The discrepancy likely reflects different test conditions, versions, or rounding, and illustrates the precision these numbers deserve.

What does the CRITICAL cybersecurity classification mean?

It means Astra can autonomously find and exploit previously unknown software vulnerabilities (zero-days). This is the first AI model to receive this classification from OpenAI's deployment safety programme. The strongest security capabilities are restricted to vetted organisations.

Is the full model available to everyone?

No. The strongest security and offensive capabilities are limited to vetted organisations through OpenAI's Daybreak programme. The version available to paying customers is deliberately restricted. Source: OpenAI safety report.

What is the knowledge cutoff?

30 April 2026. The model does not know about events after that date unless it uses web search, which is a separate feature. Source: OpenAI documentation.

Can I use Astra with EU data residency?

Astra is available through Azure and Bedrock, which offer EU regions. However, OpenAI states that the Fast pricing tier is unavailable with EU data residency enabled. Check which route your compliance requirements allow.

Do I need works council approval in Germany?

Most likely, yes. Software that changes how employees work is typically subject to co-determination under the Works Constitution Act (BetrVG). A limited pilot with defined scope is easier to agree than a rollout discovered after the fact. Consult your HR and legal teams.

Is Astra better than Claude for my team?

It depends on the task. Astra leads on benchmarks and adds computer use. Claude leads on cached-input pricing (important for long agent runs) and published its GDPval-equivalent score. The smart approach is to test both on your actual tasks and compare cost per finished job.

What should I absolutely not paste into the model?

Customer personal data without a legal basis, personnel files, unpublished financial figures, other companies' confidential material, passwords, and anything that would cause harm if leaked. Write this list before people get enthusiastic, not after.

Is it really AGI?

OpenAI's president said he personally believes future historians will call it the start of AGI. There is no agreed definition of AGI and no test that settles it. The claim is a prediction by the seller about how the future will describe the present. Judge the model on your own tasks.

How do I control costs?

Set reasoning levels per task type (low for simple, medium for analysis, high for research). Use caching by keeping consistent system prompts. Use Batch mode at 50% cost for non-urgent work, as documented by OpenAI. Set a monthly budget cap and review weekly. Track cost per finished job, not cost per request.

ISA After Hours · Augsburg

Want to work through this with people who test these tools on real work?

ISA After Hours is a community of Israeli and international tech professionals in Augsburg. We meet after work, try these things on actual projects, and tell each other honestly what did not work.

Join ISA After Hours →

Official sources