Governance & the runtime
Akka embeds governance directly in the runtime — enforcing policies, producing explanations, and containing failures as they happen. This is fundamentally different from bolt-on governance tools that read logs after the fact.
Why Bolt-On Governance Fails
If governance is not inline to the runtime, you are trusting second-hand records instead of witnessing interactions as they happen. This is insufficient for any environment subject to the EU AI Act.
Immutable Records
Only a system inline to the runtime can witness and encode every interaction immutably. A log message from a third-party runtime is just a claim — there is no way to prove it was not modified, delayed, or selectively omitted.
Human Intervention
The EU AI Act requires that humans can pause, discontinue, override, review, or nudge an ongoing agentic process. A governance layer that only reads logs cannot stop or redirect a running process.
Authorization Capture
The EU AI Act requires recording which authorizations and tools were in use at the time of every interaction. Only the runtime that executed it can produce that record authoritatively.
PII Scrubbing with Right to Explain
PII must be scrubbed, but decisions must still be explainable. If an AI rejects someone because they are too young, the decision must be explained without revealing the person’s age. Only the agentic runtime can make the decision, enforce scrubbing, and produce the explanation.
How Akka Provides Built-In Governance
Akka’s governance is not a separate product or integration. It is a property of every deployment.
-
Runtime policy enforcement — Guardrails, policies, LLMs-as-a-judge, and sanitizers are fully embedded within the runtime. Bad requests get stopped before they consume tokens, not after.
-
Self-explanation — Every decision can be traced and explained, satisfying regulatory requirements for transparency.
-
Self-containment — Failures are contained at the point of origin. A misbehaving agent cannot cascade into other parts of your system.
-
Interaction logging — Every interaction is recorded immutably by the runtime that executed it.
-
Causal analysis — Trace the chain of decisions that led to any outcome.
Compliance Certifications
Akka holds more than 19 compliance certifications including:
-
EU AI Act
-
Singapore Agent Framework
-
ISO 42001
-
SOC 2
Related Documentation
-
Guardrails — Configure runtime policy enforcement
-
Data sanitization — PII scrubbing implementation
-
Access Control — Service-level access control lists