Back to blog

EU AI Act Compliance Architecture: What Engineers Need to Know (2026)

How to diagram AI systems for EU AI Act compliance. Covers risk classification, required documentation, technical measures, and architecture patterns for high-risk AI systems.

R
Ryan·Senior AI Engineer
·

The EU AI Act entered into force in August 2024, with requirements phasing in through 2026 and 2027. For engineering teams building AI-powered products, the regulation introduces concrete technical requirements: risk documentation, human oversight mechanisms, data governance procedures, robustness testing, and audit logging. Architecture diagrams are not just useful for meeting these requirements — in many cases, they are specifically required.

This guide explains the EU AI Act's risk classification model, the technical measures required for each tier, and how to diagram AI systems in a way that supports compliance documentation, internal audits, and conformity assessments.

EU AI Act risk tiers: what each tier means for your architecture

The Act classifies AI systems into four risk tiers. The higher the risk tier, the more documentation, oversight, and technical controls are required.

Risk tierExamplesRequirements
Unacceptable riskSocial scoring, real-time biometric surveillance in public spacesBanned outright
High riskCV screening, credit scoring, medical AI, critical infrastructure, law enforcementFull documentation, conformity assessment, human oversight, post-market monitoring
Limited riskChatbots, AI-generated content, deepfakesTransparency obligations (disclose AI use)
Minimal riskSpam filters, recommendation systems, most B2B AI toolsNo mandatory requirements (voluntary codes)

Most SaaS products fall in the limited or minimal risk tiers — but products touching employment, credit, healthcare, education, or critical infrastructure are likely high-risk. The classification determines the entire compliance architecture.

Technical documentation requirements (Article 11)

For high-risk AI systems, Article 11 requires technical documentation that must be kept up to date and made available to national authorities on request. The Act specifies exactly what this documentation must include — and architecture diagrams are explicitly named:

  • A general description of the AI system including its intended purpose and the natural persons responsible for it
  • A detailed description of the elements of the AI system and the process for its development — this is where architecture diagrams belong
  • The design specifications of the system, including the general logic and key design choices
  • A description of the system architecture showing the software components and their interaction with hardware
  • The training data used including data sheets and governance procedures
  • Measures taken for human oversight and control
  • The risk management system documentation

Architecture diagrams that show system components, data flows, human oversight intervention points, and external integrations are directly responsive to these documentation requirements.

Human oversight architecture: what to diagram

Article 14 requires that high-risk AI systems be designed to allow human oversight. Specifically, humans must be able to: understand system outputs, monitor system performance, intervene and override decisions, and stop the system. Your architecture diagram should make these oversight mechanisms explicit.

A compliant human oversight architecture typically includes:

  • Decision review queue: AI outputs are staged for human review before taking effect on consequential decisions. The diagram should show what triggers review (confidence threshold, decision category, random sampling) and what the review interface looks like.
  • Override mechanism: A clear path for authorized humans to override, reject, or modify AI outputs. Show who can override, how overrides are recorded, and whether overrides feed back into model retraining.
  • Monitoring dashboard: Real-time visibility into system performance — inference volume, decision distribution, confidence score distribution, and anomaly alerts. Show how monitoring data flows from inference infrastructure to the oversight interface.
  • Kill switch / pause mechanism: The ability to halt AI decision-making and revert to manual processes. Show what happens downstream when the AI system is paused.

Human-in-the-loop AI architecture prompt

"EU AI Act compliant high-risk AI system architecture for an employment screening tool. Input: candidate CV PDF uploaded via web portal. Processing: document parsing service extracts structured data, ML inference service scores candidate against job requirements using a fine-tuned model (hosted on AWS SageMaker). Human oversight layer: all AI scores below 0.85 confidence are queued for human review in a reviewer dashboard; reviewers can approve, reject, or override each decision; all decisions (AI and human) are logged to an immutable audit trail (AWS QLDB). Monitoring: Datadog dashboard tracks inference volume, confidence distribution, override rate, and bias metrics by demographic cohort. Kill switch: admin interface can pause AI scoring and route all candidates to manual review. Draw the system architecture highlighting the human oversight flow, audit logging path, and monitoring topology."

Audit logging architecture for AI Act compliance

Article 12 requires that high-risk AI systems automatically log events to enable post-hoc auditing. The logs must capture enough information to reconstruct the circumstances of each AI decision. Your architecture diagram should show:

  • What is logged: Input data (or a reference to it), model version, inference output, confidence scores, timestamp, user ID, and session context
  • Where logs are stored: Append-only, tamper-evident storage — AWS QLDB, Azure Immutable Blob Storage, or a dedicated audit log service
  • How long logs are retained: The Act requires logs to be kept for the period of the AI system's intended operational lifetime, and at minimum for 6 months for limited-risk systems
  • Who can access logs: Authorized personnel for internal audit, and national supervisory authorities on request

Separating the audit log store from your operational database is both an architectural best practice and a compliance necessity — it prevents operational data management from accidentally deleting or modifying audit records.

Data governance architecture for AI Act compliance

For high-risk AI systems that involve training or fine-tuning models on personal data, Article 10 requires data governance practices covering the entire data lifecycle. The architecture diagram should show:

  • Data collection and ingestion: where training data comes from, how it's validated, and what consent or legal basis covers its use
  • Data preprocessing: how personally identifiable information is handled — anonymization, pseudonymization, or deletion before it reaches the training pipeline
  • Data lineage: the ability to trace a model's training data back to its source, which is required for bias assessment and right-to-erasure compliance
  • Model registry: versioned storage of models with their associated training data references, evaluation metrics, and approval state

For products that use foundation models from third-party providers (Anthropic, OpenAI, Google) rather than training their own models, the data governance requirements are considerably lighter — the regulation places the documentation burden on the foundation model provider for the model itself. Your data governance architecture then focuses on what you send to the model and how you handle outputs.

Architecture for GPAI (General Purpose AI) model providers

The EU AI Act introduces a separate compliance track for General Purpose AI (GPAI) model providers — companies like Anthropic, OpenAI, Google, and Meta that provide foundation models used by downstream application developers. If you are building a GPAI model (or a product that distributes a fine-tuned version of one), the requirements are different:

  • Technical documentation covering the model's training process, capabilities and limitations, and evaluation results
  • A summary of training data including sources, scope, and data governance procedures
  • For systemic-risk GPAI models (those trained with more than 10^25 FLOPs): adversarial testing, cybersecurity incident reporting, and model evaluation against standardized benchmarks

Architecture diagrams for GPAI systems focus on the training infrastructure, evaluation pipeline, and the safety and alignment measures applied during and after training. See the LLM architecture diagrams guide for patterns applicable here.

What most SaaS AI products actually need to do

If you are building a typical AI-powered SaaS product — one that uses Anthropic, OpenAI, or Google APIs to add features like content generation, summarization, classification, or chatbot capabilities — you are most likely in the limited risk tier. Your compliance requirements are:

  • Transparency disclosure: Users must be informed when they are interacting with an AI system. For chatbots, this means identifying the system as AI at the start of interactions. Architecture implication: your chat UI must include a disclosure; your onboarding flow should present AI use clearly.
  • Synthetic content labeling: AI-generated images, video, and audio must be labeled as AI-generated. Architecture implication: your content generation pipeline needs a labeling step before content is surfaced to users.
  • No prohibited practices: Your AI system must not engage in subliminal manipulation, exploit vulnerabilities, or perform prohibited biometric categorization.

The architecture diagram changes needed for limited-risk compliance are modest: add transparency disclosure to your auth/onboarding flow, add AI content labeling to your generation pipeline, and document that your system does not engage in prohibited practices.

Frequently asked questions about EU AI Act architecture

Does the EU AI Act apply to my product?

The EU AI Act applies to providers and deployers of AI systems that are placed on the EU market or that affect people in the EU — regardless of where the provider is based. If your product has EU users, the Act applies to you. The requirements vary significantly by risk tier: most B2B SaaS tools fall into limited or minimal risk and have light compliance requirements. Products that make consequential decisions about employment, credit, education, healthcare, or critical infrastructure are likely high-risk and face substantial documentation and oversight requirements.

What architecture documentation does the EU AI Act require?

For high-risk AI systems, Article 11 requires a detailed description of the system's components, their interactions, and the development process. This explicitly includes architecture diagrams showing how software components interact with hardware and external services. The documentation must be kept current and made available to national competent authorities on request.

How do I diagram human oversight for AI Act compliance?

A compliant human oversight architecture diagram should show: the decision points where AI outputs are presented to human reviewers, the intervention mechanisms (override, reject, modify), the criteria that trigger mandatory human review (confidence thresholds, decision categories), the audit trail from AI output through human decision to downstream effect, and the kill switch mechanism that halts AI processing if needed. Each of these should be labeled as an oversight control in the diagram.

Related guides: agentic AI security architecture, zero-trust architecture, LLM architecture diagrams, and DevSecOps architecture diagrams.

Ready to try it yourself?

Start Creating - Free