Most enterprise AI teams spent the first half of 2026 watching the wrong date.
The deadline everyone tracked was 2 August 2026, when high-risk obligations under the EU AI Act were due to bite. That date moved. The Digital Omnibus on AI — Regulation (EU) 2026/1744 — entered into force on 27 July 2026, deferring high-risk obligations for stand-alone Annex III systems to 2 December 2027 and for AI embedded in regulated products under Annex I to 2 August 2028.
The relief was widely reported. What was less widely reported is that the Omnibus left the Article 50 transparency obligations largely intact at 2 August 2026 — and those are the provisions that apply most directly to conversational agents. If you operate an agent that talks to customers, employees, or citizens in the EU, an obligation started applying four days ago.
This is an engineering read of the regulation, not legal advice. The distinctions below determine architecture; confirm your specific classification with counsel.
What applies right now
| Obligation | Applies from | Status |
|---|---|---|
| Prohibited practices, AI literacy | 2 February 2025 | In force |
| General-purpose AI model obligations | 2 August 2025 | In force |
| Article 50 transparency (most requirements) | 2 August 2026 | In force |
| AI-generated content marking (machine-readable) | 2 December 2026 | Grace period |
| New CSAM / non-consensual content prohibitions | 2 December 2026 | Pending |
| Regulatory sandboxes established | 2 August 2027 | Pending |
| High-risk, stand-alone (Annex III) | 2 December 2027 | Deferred |
| High-risk, embedded in regulated products (Annex I) | 2 August 2028 | Deferred |
Two things in this table deserve more attention than they are getting.
First, the Omnibus reinstated the requirement for providers to register systems they have self-assessed as non-high-risk in the EU database, albeit with a lighter administrative footprint. Teams that concluded “we assessed ourselves out of Annex III, so we have no filing obligation” should revisit that conclusion. The self-assessment is now something you record rather than something you merely conduct.
Second, the AI Office’s supervisory powers over general-purpose AI were significantly expanded. If your agent architecture depends on a GPAI model provider, your compliance posture is now partly downstream of a supervisory relationship you are not party to.
The transparency obligation is an architecture requirement
Article 50 is short, and it is the provision most likely to require a change to something you have already shipped. Three parts matter for agents.
Disclosure of AI interaction. Providers of AI systems intended to interact directly with natural persons must ensure those persons are informed they are interacting with an AI system — unless it would be obvious to a reasonably well-informed person in the circumstances.
The engineering consequence is that disclosure has to be a property of the system, not a policy in a document. It has to survive every entry point. An agent reachable through a web widget, a WhatsApp number, an email alias, and an embedded assistant in a partner’s product needs the disclosure to hold on all four channels, including the ones your team did not build. The “obvious in the circumstances” carve-out is narrower than teams hope, and it erodes as agents get better: an agent indistinguishable from a human agent is precisely the case where the exemption does not apply.
Marking of synthetic content. Providers of systems generating synthetic audio, image, video, or text must mark outputs as artificially generated in a machine-readable format. The grace period runs to 2 December 2026.
Machine-readable is the operative word, and it is a genuine engineering task rather than a disclaimer. It means provenance metadata that survives your pipeline — which in practice means deciding where marking happens. Mark at generation and your downstream transformations may strip it; mark at egress and you need to know which content was model-generated by the time it reaches the boundary. This is a data-lineage problem, and it is considerably easier to solve before you have six services in the path.
Point of disclosure. Information must be provided clearly and distinguishably at the first interaction or exposure. Not in a settings page. Not in the terms of service.
None of this is difficult in isolation. It is difficult retroactively, across an agent estate nobody inventoried, which is the situation most enterprises are actually in.
Provider or deployer: the question that determines everything
The Act assigns obligations by role, and agent builders routinely misjudge which role they occupy — usually optimistically.
If you build an agent on someone else’s foundation model, you are typically a deployer of that model and a provider of the AI system you assembled. Those are different obligation sets, and the provider obligations are the heavier ones.
Three ways teams become providers without intending to:
- Putting your name on it. Placing a system on the market under your own name or trademark makes you the provider of that system, including where the underlying model is someone else’s.
- Substantial modification. Materially changing a system’s intended purpose or behaviour can make you its provider. Fine-tuning sits in genuinely contested territory here; heavy adaptation toward a new purpose is closer to the line than teams assume, and prompt-level configuration is generally not.
- Repurposing. Deploying a general-purpose system for a high-risk purpose can pull you into provider obligations for that use.
The practical implication for architecture is worth stating plainly: your role is determined by what your system does, not by which vendor’s model sits underneath it. “We use a compliant model” is not a compliance position. It is one input to yours.
Where enterprise agents land in Annex III
The high-risk deadline moved to December 2027, which is not a reprieve so much as a schedule. Annex III conformity work — risk management, data governance, technical documentation, logging, human oversight, accuracy and robustness testing, conformity assessment — takes considerably longer than sixteen months in a large organisation, and it constrains architecture. Starting it in 2027 means rebuilding rather than building.
Three Annex III categories catch a disproportionate share of enterprise agent use cases:
Employment. Recruitment and selection, task allocation, monitoring and evaluation of performance. This is where enterprise agent enthusiasm concentrates — CV screening, candidate ranking, workforce scheduling, productivity analysis — and it is squarely high-risk. An agent that ranks applicants is a high-risk system regardless of how thin a wrapper it is around a general model.
Essential private and public services. Creditworthiness evaluation, insurance pricing and risk assessment, and access to essential services. Financial services agent projects land here routinely.
Education. Admissions decisions, assessment of learning outcomes, monitoring during testing.
Article 6(3) provides a derogation for systems performing narrow procedural tasks, improving the result of prior human activity, detecting decision patterns without replacing human assessment, or performing preparatory work. This is a real and useful filter — but it has a hard limit: a system that performs profiling of natural persons is always high-risk, derogation unavailable. And with the reinstated registration duty, invoking the derogation is now a documented act rather than an internal judgement.
What compliance requires you to build
Read as an engineering specification rather than a legal one, the high-risk obligations map onto agent architecture in a way that should look familiar to anyone who has read the governance patterns on this site.
Logging sufficient for traceability, retained. The Act requires automatic recording of events over the system’s lifetime. For an agent, this means the full trajectory — inputs, retrieved context, tool calls with arguments, decisions, and outputs — not application logs. If your current logging cannot reconstruct why a specific decision happened eleven months ago, it is not adequate, and retrofitting trajectory capture into a live agent estate is expensive.
Human oversight that is real. Oversight must enable the responsible person to understand the system’s capacity and limits, interpret output, decide not to use it, and intervene or interrupt. A rubber-stamp approval queue does not satisfy this. It requires the approval surface to present the decision’s basis, and the reviewer to have both the competence and the authority to override — which is the design problem autonomy borders addresses and where most implementations quietly fail.
Accuracy, robustness, and cybersecurity, declared and tested. You must state accuracy metrics and demonstrate robustness. That is an evaluation suite with a versioned golden dataset, not a launch-week benchmark. The cybersecurity requirement explicitly contemplates adversarial manipulation, which for agents means prompt injection is a named compliance concern rather than a discretionary hardening exercise.
Data governance over training, validation, and testing data. Including examination for bias and relevance. For agent systems built on third-party models, this bites hardest on your retrieval corpus and any data you fine-tune with — the parts you actually control.
Technical documentation and a quality management system. Maintained, not authored once. The AI Agent Canvas and lifecycle management practice are how this stops being a separate documentation project running alongside engineering.
The overlap with good practice is close to total. Almost everything the Act demands of a high-risk system is something you should want for an agent making consequential decisions. The regulation’s contribution is a deadline and a documentation burden, not a novel set of engineering ideas.
What to do in the next quarter
Inventory the estate. You cannot classify what you have not enumerated, and most organisations have more agents in production than any central list reflects. Record for each: the entry points through which humans reach it, whether it generates synthetic content, its Annex III proximity, and who inside the organisation owns it.
Close the Article 50 gap now. This is the obligation currently in force. Check every channel, verify disclosure appears at first interaction, and start the machine-readable marking work against the 2 December 2026 date rather than after it.
Record your non-high-risk self-assessments. The registration duty is back. An undocumented conclusion is now a gap.
Start Annex III conformity work for anything in employment, essential services, or education. December 2027 is a build schedule, not a deferral.
Fix the trajectory logging. It is the longest-lead-time item, it is required for conformity, and it is independently the thing that makes agents debuggable. If you do one architectural thing this quarter, do this.
What the Act does not do
It does not classify agents as a category. There is no “agentic AI” tier, no obligation triggered by autonomy level, and no recognition that a system taking actions through tools differs from one producing a prediction. The Act’s risk model is organised around use case and domain, which means autonomy — the property that actually determines an agent’s blast radius — is invisible to it. A read-only agent and one with irreversible write authority in the same domain carry identical obligations. Your internal governance has to be more discriminating than the regulation.
It also does not make you safe. Conformity is a floor, and the 2026 security data is a reminder that organisations with mature compliance functions are having incidents anyway. Compliance and reliability are correlated but distinct programmes, and treating the first as evidence of the second is a well-worn enterprise mistake.
Key takeaways
The Digital Omnibus on AI (Regulation (EU) 2026/1744), in force since 27 July 2026, deferred high-risk obligations to 2 December 2027 for stand-alone Annex III systems and 2 August 2028 for AI embedded in regulated products — but left Article 50 transparency largely at 2 August 2026, which means the obligation most relevant to conversational agents is already in force. Disclosure of AI interaction must be a system property holding across every channel an agent is reachable through, and machine-readable marking of synthetic content is a data-lineage problem to solve before the 2 December 2026 grace period ends. Obligations attach by role, and teams become providers rather than deployers more easily than they expect — by branding a system, substantially modifying it, or repurposing a general-purpose system for a high-risk use — so “we use a compliant model” is an input to your compliance position rather than a substitute for it. Enterprise agents concentrate in three Annex III categories: employment, essential private and public services, and education; the Article 6(3) derogation is genuine but unavailable to any system profiling natural persons, and the Omnibus reinstated the duty to register self-assessed non-high-risk systems. Read as engineering requirements, the high-risk obligations demand full trajectory logging with retention, human oversight with real intervention capability, declared accuracy with adversarial robustness testing, and maintained technical documentation — all things a consequential agent should have anyway, which is why December 2027 is a build schedule rather than a reprieve.