Skip to content

I.7I · The modeldefense

Frontier capability & the if-then frameworks

These if-then frameworks are where the labs decide whether a model is too capable to ship - read them as both the brake on frontier risk and a forecast of the offensive capability your defenses will soon face.

If VI.1 · Security, safety & who is actually attacking you is the threat, these frameworks are the field’s attempt to bound it before release. Three reasons a practitioner reads them closely: they are becoming binding law (EU AI Act, US state bills); a lab’s framework plus its system card is the procurement evidence a buyer can hold it to; and a published threshold crossing is often the earliest public signal that a dangerous capability has arrived. The concept - gate scaling on measured capability - was introduced by METR (Model Evaluation and Threat Research) in 2023 and is now standard across the major labs.

The three frameworks (updated 2025-2026)

LabFrameworkThreshold concept
AnthropicResponsible Scaling Policy (v3.4, current; the v3.0 rewrite of Feb 2026 replaced the hard pre-training pledge with Frontier Safety Roadmaps & Risk Reports; v3.3 refined the chem/bio capability threshold; ASL-3 activated May 2025)AI Safety Levels (ASL) / Capability Thresholds
OpenAIPreparedness Framework (v2; Apr 2025)Tracked categories at High / Critical (Bio & Chem, Cybersecurity, AI Self-improvement)
Google DeepMindFrontier Safety Framework (v3.1; Apr 2026)Critical Capability Levels (CCLs)

They share the same bones: test models for dangerous capabilities during development; if a model approaches a threshold, apply deployment mitigations and secure the model weights against theft; if no sufficient mitigation exists, hold deployment (or, for some, development). They center on the same misuse domains - CBRN (chemical, biological, radiological, nuclear) / bio-chemical, cyber, and AI self-improvement / R&D - but they are not identical: DeepMind’s FSF v3 (Sep 2025) added a harmful-manipulation Critical Capability Level and an explicit misalignment track (models resisting oversight or shutdown); v3.1 (Apr 2026) then added Tracked Capability Levels (TCLs) for earlier warning below the Critical threshold, so misalignment is no longer just an afterthought.

flowchart TB
  EVAL["Dangerous-capability evals<br/>CBRN · cyber · self-improvement"] --> Q{"Approaching a<br/>capability threshold?"}
  Q -->|"No"| DEP["Deploy with standard safeguards"]
  Q -->|"Yes"| MIT{"Sufficient safeguards<br/>available?"}
  MIT -->|"Yes"| DEPS["Deploy + heightened safeguards<br/>+ secure model weights"]
  MIT -->|"No"| HOLD["Hold deployment<br/>(and possibly development)"]
  classDef e fill:#0f1a18,stroke:#5bd1c5,color:#bdeee2;
  classDef g fill:#1d1708,stroke:#e4a23f,color:#f0d8a8;
  classDef r fill:#241310,stroke:#ff5b4d,color:#ffc4bb;
  class EVAL,DEP,DEPS e; class Q,MIT g; class HOLD r;

The “if-then” spine all three share. The disagreements are in where thresholds sit, how strong the commitment is (“will” vs “recommend”), and who can override.

What this looks like in practice (2025-2026)

Capability-threshold gate keyed to published frameworks (deploy / hold)
from enum import IntEnum
class Cap(IntEnum): # illustrative ordinal scale; PF v2 itself defines only High and Critical
LOW = 0; MEDIUM = 1; HIGH = 2; CRITICAL = 3
# eval outputs (illustrative): CVE-Bench one-day exploit success rate + uplift study
evals = {
"cve_bench_success_rate": 0.31, # arXiv:2503.17332 style metric
"cyber_tier": Cap.HIGH, # OpenAI PF classification (GPT-5.3-Codex was first High)
"cbrn_asl": 3, # Anthropic ASL-3 (activated May 2025)
}
def release_decision(e):
# High cyber OR ASL>=3 => must ship the heightened safeguard stack, not block
if e["cyber_tier"] >= Cap.CRITICAL or e["cbrn_asl"] >= 4:
return "HOLD", "no sufficient mitigation for Critical/ASL-4"
if e["cyber_tier"] >= Cap.HIGH or e["cbrn_asl"] >= 3:
return "DEPLOY", "activate classifiers + monitoring + weight-security + external review"
return "DEPLOY", "standard safeguards"
print(release_decision(evals)) # ('DEPLOY', 'activate classifiers + ...')
# thresholds are pre-committed in the framework, not negotiated after a strong result
  • Anthropic activated ASL-3 safeguards in May 2025 (input/output classifiers reducing chem/bio misuse) and treats recent models as High on biology; the RSP v3.0 rewrite (Feb 2026) replaced the earlier hard pre-training commitment with Frontier Safety Roadmaps and recurring Risk Reports plus external review, and subsequent minor updates (v3.1, v3.3, then v3.4, 8 Jul 2026) refined the chemical/biological (v3.3) and AI-R&D (v3.4) thresholds; v3.4 is current.
  • OpenAI’s GPT-5.3-Codex (Feb 2026) was the first launch treated as High capability in Cybersecurity, activating the associated safeguards - a concrete threshold crossing in offensive-security capability (per its system card; ties back to III.2 · Coding agents & Codex security).
  • Evaluation methods: dangerous-capability evals and uplift studies, domain benchmarks (e.g. CVE-Bench for cyber), internal red teams, and third-party evaluators including METR and the UK/US AI Safety Institutes.