All posts
The EU AI Act Has Opinions About Your AI Agent's Phone Calls
GuideBy Dial Engineering·6 min read·May 22, 2026·14

The EU AI Act Has Opinions About Your AI Agent's Phone Calls

Article 52 of the EU AI Act creates mandatory disclosure requirements for AI systems interacting with humans in real-time conversational contexts. If your agent makes calls or sends messages to EU residents, you have a compliance obligation that most engineering teams haven't addressed.


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:

  • Makes phone calls to humans
  • Sends messages that could be interpreted as coming from a human
  • Engages in conversational interaction with humans in real-time
  • 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:

  • Prominent: Not buried in fine print or mentioned after the conversation has started
  • Timely: Before or at the start of the interaction, not mid-conversation
  • Clear: The human must actually understand they're interacting with an AI
  • 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:

  • Any organization in the EU: Obviously covered.
  • Organizations outside the EU deploying AI that interacts with EU residents: Covered. The Act explicitly extends to providers and deployers whose AI systems are used in the EU, regardless of where the provider is established.
  • Startups and SMEs: There are some provisions for SMEs, but the Article 52 transparency obligations apply broadly.
  • 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:

    RegulationRelevant for agents
    EU AI Act Article 52Mandatory disclosure for conversational AI
    GDPR Article 22Automated decision-making rights
    GDPR Articles 12–14Transparency 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

  • Audit every agent that interacts with humans in real-time conversational contexts
  • Ensure that AI disclosure is delivered at the start of every interaction — not in the system prompt, but in a way that is consistently enforced
  • Document the lawful basis for processing contact data under GDPR for every agent that reaches EU residents
  • Implement suppression list management that propagates opt-outs across channels
  • 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.

    Did you enjoy this post?

    14 claps