Anthropic and Google Embed Invisible Token-Biasing Watermarks in Claude and Gemini Output
Anthropic announced worldwide plans to embed statistical invisible watermarks into all Claude-generated text, following similar practices implemented by Google Gemini since 2024. The watermarking uses token-probability biasing that persists across copy-pasting and light editing without requiring metadata.

Impact: Medium
Why it matters
Engineers using LLM outputs for synthetic dataset creation, automated documentation, or code generation must account for non-random token distribution shifts embedded directly in generated strings.
TL;DR
- 01Claude output will include invisible statistical watermarks embedded directly in token selection.
- 02Gemini has used secret-key token probability biasing across text generation since 2024.
- 03Watermarks survive copy-paste operations and light text editing because they are built into word choice rather than metadata.
Key facts
- Gemini Watermarking Active
- Since 2024
- Claude Rollout Target
- Models launched on/after August 2, 2026
- Compliance Framework
- EU AI Act Code of Practice
- Mechanism Type
- Statistical token-probability biasing
Token-Biasing Architecture
Statistical watermarking in modern LLMs like Google Gemini and upcoming Claude models does not rely on metadata header flags or hidden Unicode control characters. Instead, it operates during the model sampling step by applying a secret-key cryptographic hash to previous tokens. This hash slightly shifts the logit scores, favoring specific synonym tokens to create a mathematical signature across generated text blocks.
Persistence and Downstream Impact
Because the watermark is embedded directly in word choice and syntax choices, it travels with text when copied, pasted, or rendered in plain text. Anthropic notes that the mark persists through minor manual edits. Developers generating synthetic code, unit tests, or technical documentation should be aware that output text contains detectable statistical patterns that can be identified by detection algorithms, potentially affecting downstream classifier performance and model fine-tuning corpus entropy.
✓ When to use
- Auditing AI-generated text provenance and tracking model outputs across systems
- Ensuring compliance with regional AI safety and transparency disclosures
✕ When NOT to use
- Assuming model output represents unbiased pseudorandom sampling entropy
- Relying on simple plain-text copy-pasting to strip model provenance
What to do today
- Account for statistical token shifts when using Claude or Gemini text in synthetic training sets.
- Audit text processing pipelines to evaluate how model output detection may affect downstream tools.
Sources