If your AI agent makes phone calls to humans — or sends messages that could be perceived as coming from a human — the EU AI Act has something to say about it.
Article 52 of the EU AI Act (Regulation 2024/1689) establishes transparency obligations for AI systems interacting with humans. The core requirement: when an AI system is designed to interact with humans in real-time conversational contexts, it must inform the human that they are interacting with an AI system — unless the human already knows.
This isn't a marginal requirement. It applies to any AI agent that:
If your agent does any of these things and reaches EU residents — regardless of where your infrastructure is — you're subject to Article 52.
What the requirement means in practice
The disclosure requirement has to be:
For a voice call, this means the agent's opening must include an AI disclosure — something like:
> "Hi, this is an AI assistant calling on behalf of [Company]. I'm reaching out about your account. Is now a good time?"
For email or SMS, this might be less strict (there are broader carve-outs for written content), but the spirit of the requirement suggests that AI-generated outreach to humans should be identifiable as AI-generated.
Who this applies to
The EU AI Act's territorial scope is broad:
If your sales agent calls a prospect in Germany, you're subject to Article 52 even if your entire company is in the United States.
Where most teams are today
Most engineering teams building AI communication agents have addressed this in one of three ways:
1. In the system prompt: "You must always tell the user you're an AI." This is the least reliable approach. System prompts can be overridden, the disclosure can be missed in edge cases, and there's no enforcement mechanism or audit trail.
2. Not at all: The agent sounds human, there's no disclosure, and the team hasn't thought about Article 52.
3. Consulting the legal team, who is also uncertain: The regulation is new, the guidance is still developing, and nobody's sure exactly what "prominent" and "timely" mean in the context of a 5-second call opening.
None of these are good. The right answer is protocol-level enforcement.
Protocol-level disclosure enforcement
The right approach is to make disclosure a protocol feature, not an application feature.
When an agent's ACN policy includes "disclosure": "required", the infrastructure enforces the disclosure before the first turn of any voice interaction — before the call audio starts, before the agent's first word, as a protocol-level obligation.
The disclosure text is configurable — you choose the wording. The requirement to deliver it is not configurable.
agent = client.acn.provision(
namespace="yourco",
agent_id="sales-agent-eu",
capabilities=["voice", "sms"],
policy={
"disclosure": "required",
"disclosure_language": "en",
"consent_model": "gdpr_legitimate_interest",
"entity_type_signal": "required"
}
)The entity_type_signal policy flag causes X-ACES-Entity-Type: agent to be injected into email headers and SIP signaling for voice calls. ACES-compliant receiving systems can use this to filter or display agent communications appropriately.
The broader regulatory landscape
Article 52 is the most relevant provision for real-time AI communication, but it's not the only one:
| Regulation | Relevant for agents |
|---|---|
| EU AI Act Article 52 | Mandatory disclosure for conversational AI |
| GDPR Article 22 | Automated decision-making rights |
| GDPR Articles 12–14 | Transparency requirements when processing personal data |
| TCPA (US) | Consent requirements for automated calls/SMS |
| CAN-SPAM (US) | Opt-out requirements for commercial email |
| PECR (UK) | Similar to GDPR for communications |
All of these apply to agents communicating across channels. None were written with agents in mind. Compliance teams are interpreting them in real time.
The organizations that will navigate this best are the ones that make compliance a protocol feature from the start — not the ones that bolt it on after the regulator asks questions.
What to do today
The regulation is enforceable now. The enforcement is gradually ramping up. The teams that built compliance into their architecture early won't be scrambling when the first Article 52 enforcement action lands.