Anthropic Rolls Out Global AI Text Watermarking for Claude to Comply with EU AI Act

Anthropic has started deploying model-level text watermarking across Claude to meet the regulatory requirements of the European Union AI Act. The company confirmed that because it currently lacks infrastructure to reliably partition model inference behavior by geographic jurisdiction, watermarking is being applied globally across all Claude web products and API endpoints. The update follows the formalization of the EU Code of Practice on Transparency of AI-Generated Content, signed in July 2026

2 min
Anthropic Rolls Out Global AI Text Watermarking for Claude to Comply with EU AI Act

Anthropic has started deploying model-level text watermarking across Claude to meet the regulatory requirements of the European Union AI Act. The company confirmed that because it currently lacks infrastructure to reliably partition model inference behavior by geographic jurisdiction, watermarking is being applied globally across all Claude web products and API endpoints.

The update follows the formalization of the EU Code of Practice on Transparency of AI-Generated Content, signed in July 2026 by Anthropic and approximately 190 industry participants. Under the EU AI Act framework taking effect in August 2026, general-purpose AI providers offering models in the European single market must implement technical mechanisms to mark synthetic text and multimodal outputs.

Mechanism and Sampling Architecture

Rather than injecting invisible Unicode markers or modifying output token lengths, Anthropic's watermarking operates at the generation layer during token sampling. The system implements an adaptation of Google DeepMind's SynthID-Text framework, which builds on statistical pseudo-random sampling principles established by Scott Aaronson in 2022.

During autoregressive generation, a large language model calculates probability distributions across candidate tokens for each sequential position. When candidate tokens have similar probabilities, standard inference engines select candidates using a pseudo-random number generator. Anthropic's watermarking algorithm replaces the generic random number source with a deterministic pseudo-random function seeded by a proprietary cryptographic key combined with the preceding token sequence (n-gram context).

Technical schematic of token probability sampling and cryptographic key seeding

This deterministic seeding creates a subtle statistical pattern across extended text sequences. While individual word choices appear natural to human readers, the full sequence can be evaluated against the cryptographic key to compute the probability that Claude participated in text generation.

Dynamic Suppression for Exact Completions and Code

A core design requirement for production inference is preventing statistical watermarking from degrading factual precision or code execution. In constrained contexts where only a single token is objectively correct, altering candidate selection would introduce functional syntax errors or factual inaccuracies.

Anthropic confirmed that watermarking is dynamically suppressed in scenarios with low entropy:

  • Deterministic completions: Calculations, factual historical names, and structured data with single valid answers bypass candidate shifting entirely.
  • Source code generation: Programming language syntax and functional statements remain unwatermarked to preserve operational validity, though non-functional segments like comments can carry subtle seed modifications.
  • Editing and proofreading: When Claude processes human-provided drafts for minor grammar and spelling corrections, only newly generated replacement tokens carry watermarking, leaving detection signals sparse.
  • Open-ended generation and translation: Creative prose, long-form explanations, and language translations feature wide token selection entropy, allowing full watermark embedding.

Multimodal Credentials and Detection Roadmap

For non-text media produced by Claude, including PNG, JPG, and SVG assets, Anthropic is deploying Coalition for Content Provenance and Authenticity (C2PA) metadata standards rather than steganographic text alterations. These files receive cryptographically signed metadata records certifying AI generation without altering visual pixels.

Anthropic announced plans to release a dedicated Watermark Detection API, allowing enterprises and verification systems to query text passages against its cryptographic verification service. Existing model checkpoints released prior to August 2, 2026 operate under temporary regulatory transition windows and will receive watermarking integration in upcoming update cycles.

Sources

Written by

More to read

  • Knowledge Distillation for Large Language Models: From Soft Targets to On-Policy Reverse KL

    Knowledge Distillation for Large Language Models: From Soft Targets to On-Policy Reverse KL Knowledge distillation (KD) has become the primary mechanism for transferring capabilities from massive proprietary models to smaller, deployable open-weight models. The technique originated in classification, but applying it to auto-regressive language models exposed fundamental mismatches: token-level forward KL forces students to cover the teacher's full output distribution, while supervised training

    1 min
  • Velaura AI Raises 10M Series A at B Valuation for Low-Power AI Silicon

    Velaura AI Raises $110M Series A at $1B Valuation for Low-Power AI Silicon Velaura AI has closed a $110 million Series A funding round at a valuation exceeding $1 billion. The financing was led by Seligman Ventures, with participation from Capricorn Investment Group alongside existing backers including Samsung Catalyst Fund, StepStone Group, Maverick Silicon, Celesta Capital, and Mayfield. The capital will fund the commercialization and deployment of Velaura's silicon IP and physical design te

    1 min
  • Vector Databases in Production: Architecture, Filtering Strategies, and Scale Ceilings for pgvector, Qdrant, Milvus, and Pinecone

    The rapid deployment of retrieval-augmented generation (RAG) and semantic search has turned vector databases from specialized academic tooling into core production infrastructure. However, engineering teams face conflicting architectural paradigms. On one side, the relational database ecosystem argues that vector extensions inside existing databases eliminate operational overhead. On the other side, dedicated vector database vendors argue that relational engines cannot handle high-dimensional ge

    1 min