A legal and regulatory concept referring to the potential for highly capable, general-purpose AI models (like large foundation models) to cause widespread, cascading harm across society, the economy, or democratic processes, triggering enhanced regulatory oversight and mandatory mitigation strategies.
If a single bank fails, it’s a problem for that bank. If the entire financial system collapses because all the banks are connected, that’s a “systemic risk.” In AI, systemic risk means an AI model is so powerful and widely used that if it makes a mistake, gets hacked, or is used maliciously, it could crash the stock market, disrupt national power grids, or manipulate a national election all at once. Because the stakes are so high, regulators treat these specific models with extreme caution.
Under the EU AI Act, “systemic risk” is the threshold that elevates a General-Purpose AI (GPAI) model into a “GPAI model with systemic risk.”
How is Systemic Risk Defined? A model is presumed to have systemic risk if:
Mandatory Requirements for Models with Systemic Risk:
Systemic risk classification fundamentally alters the business model of frontier AI labs:
A nuclear power plant vs. a coal furnace. A coal furnace (standard AI) can burn down a house if misused. A nuclear power plant (systemic risk AI) can contaminate an entire region if it fails. Therefore, the nuclear plant requires federal oversight, constant inspections, and emergency containment protocols that the coal furnace does not.
# Conceptual: Evaluating Systemic Risk based on Compute Threshold
def assess_systemic_risk(flops_used, model_capabilities):
"""
Determines if a General-Purpose AI model poses a systemic risk
based on the EU AI Act criteria.
"""
SYSTEMIC_RISK_THRESHOLD = 10**25
if flops_used > SYSTEMIC_RISK_THRESHOLD:
return "⚠️ SYSTEMIC RISK: Exceeds compute threshold. Mandatory EU AI Office oversight required."
if "high_impact_capability" in model_capabilities:
return "⚠️ SYSTEMIC RISK: Designated by Commission due to high-impact capabilities."
return "✅ STANDARD GPAI: Subject to standard transparency requirements, but not systemic risk protocols."
# Usage
print(assess_systemic_risk(10**26, ["reasoning", "coding"]))
# Output: ️ SYSTEMIC RISK: Exceeds compute threshold...