GPT-5.6 Sol: OpenAI's First 'High' Cyber-Risk Model Ships With Agentic Tool Calling
OpenAI's new flagship, Sol, is the first GPT model it has classified as 'High capability' for cybersecurity risk — and it arrives with sandboxed code execution and 16-agent orchestration that widen what enterprises need to red-team.
Key Takeaways
- OpenAI moved the GPT-5.6 family — Luna, Terra, and Sol, smallest to largest — to general availability on 9 July 2026; Sol is the first model OpenAI has publicly rated 'High capability' for cybersecurity risk.
- OpenAI says Sol and Terra can help find vulnerabilities and assemble pieces of exploits, but that neither carried out autonomous end-to-end attacks against hardened targets during evaluation.
- The release pairs that risk rating with expanded agentic features: programmatic tool calling that runs model-written JavaScript in a network-isolated sandbox, and a multi-agent 'ultra' mode that can run up to 16 subagents in parallel.
- Enterprises deploying Sol or Terra for coding or security-adjacent workflows should treat the 'High' rating as a trigger for their own red-team pass, not a signal to rely on OpenAI's guardrails alone.
What shipped
On 9 July 2026, OpenAI took the GPT-5.6 family to general availability under a new naming scheme: the version number tracks the generation, while Luna, Terra, and Sol identify durable capability tiers that can each advance on their own cadence. Luna is the cheapest and fastest, Terra is the balanced mid-tier, and Sol is the new flagship (Simon Willison).
- Luna: $1 / $6 per 1M input/output tokens
- Terra: $2.50 / $15 per 1M input/output tokens
- Sol: $5 / $30 per 1M input/output tokens
All three share a 1 million token context window, a 128,000 token maximum output, and a 16 February 2026 knowledge cutoff.
The part that matters to security teams
The headline for us isn't the pricing table — it's the risk classification attached to Sol. OpenAI is treating Sol as 'High capability' for cybersecurity risk, its highest public rating to date for a shipped model in that category. According to reporting on OpenAI's own materials, Sol and Terra can help find vulnerabilities and pieces of exploits, but the company states neither model carried out autonomous end-to-end attacks against hardened targets during testing (Winbuzzer).
OpenAI says it is pairing that broader capability with stronger safeguards, monitoring, and trust-based controls for sensitive cyber and biological use cases, and has published a system card detailing the evaluation. For defenders, the practical read is: the model is now genuinely useful for vulnerability research and exploit-drafting assistance — which is exactly the profile that both attackers and legitimate red teams will want to test against their own environments.
More autonomy, more surface
GPT-5.6 also ships two features that change the blast radius of a compromised or manipulated session. Programmatic tool calling lets the model write and execute JavaScript inside an isolated V8 runtime with no network access, chaining tool calls without round-tripping through the chat context — OpenAI-reported customers saw token-usage drops of roughly 38–63.5% from the pattern (MarkTechPost).
Separately, a new multi-agent 'ultra' mode runs four agents in parallel by default and has been demonstrated in runs of up to 16 agents on benchmarks like BrowseComp and SEC-Bench Pro, available in ChatGPT Work and a Responses API beta.
Neither feature is inherently unsafe, but both increase how much a single manipulated instruction — via prompt injection in a fetched document, a tool result, or an untrusted subagent output — can propagate before a human sees it. A sandboxed, network-isolated runtime limits some exfiltration paths, but it doesn't stop an injected instruction from steering what code gets written or which of 16 agents takes which action.
What this means for adopters
- Don't grant Sol or Terra tool access or multi-agent orchestration to production workflows without first running your own prompt-injection and tool-abuse testing against the specific integration — model-level safeguards are evaluated on OpenAI's benchmarks, not your data flows.
- Treat the 'High' cybersecurity rating as a procurement signal: workflows that hand the model access to your codebase, ticketing system, or infrastructure warrant a higher bar of review than a general chat deployment.
- Review the linked system card before enabling programmatic tool calling or ultra mode in any environment that touches sensitive systems, and log/monitor agent-issued tool calls the same way you'd monitor a new automated user.
None of this is a reason to avoid GPT-5.6 — it's a reason to test it the way you'd test any newly capable, newly autonomous system before it touches anything that matters.
Frequently Asked Questions
What does OpenAI's 'High capability' cybersecurity rating for GPT-5.6 Sol mean?
It's OpenAI's own risk classification, applied to Sol for the first time among shipped models, reflecting that the model can meaningfully assist with tasks like vulnerability discovery and partial exploit construction. OpenAI states Sol did not carry out autonomous end-to-end attacks against hardened targets during its evaluation, and that the release includes added safeguards and monitoring for sensitive cyber and biological use cases.
Does GPT-5.6's multi-agent 'ultra' mode change the security risk of agentic deployments?
Yes, in scope more than in kind. Running up to 16 agents in parallel means a single prompt-injected instruction or compromised tool result can be acted on by more autonomous processes before a human reviews the output, which is why testing agentic pipelines for injection resistance matters more, not less, as agent counts rise.
Is the programmatic tool calling in GPT-5.6 safe by default?
OpenAI has sandboxed it — model-written JavaScript runs in an isolated V8 runtime with no network access, which limits some exfiltration paths. It does not, however, prevent an injected instruction from influencing what code the model writes or which internal tool calls it chains together, so it still needs to be tested within your specific integration rather than trusted as a blanket control.
Sources
- 1The new GPT-5.6 family: Luna, Terra, Sol — Simon Willison
- 2Previewing GPT-5.6 Sol: a next-generation model — OpenAI
- 3OpenAI Releases GPT-5.6 (Sol, Terra, Luna): A Three-Tier Model Family With Programmatic Tool Calling in the Responses API — MarkTechPost
- 4OpenAI Launches GPT-5.6 in Three Tiers: Sol, Terra and Luna — Winbuzzer