GLM-5.3-Flashni Jev-ga o'xshash qaror modeliga aylantirish
Privatemode AI GLM-5.3-Flashni Jev-ga o'xshash qaror modeliga aylantirish usulini taqdim etdi. Bu usul bir martalik o'tkazishda har bir variant uchun ehtimoliyatni aniqlaydi.

When Anthropic announced that its upcoming Claude models will embed an invisible watermark, the AI community realized that a technique once used only for provenance is now entering the regulatory arena. The EU AI Act already obliges providers to mark synthetic text in a machine‑readable way, and the new watermarking method, based on Google DeepMind's SynthID‑Text, does exactly that. But beyond labeling, the watermark subtly reshapes how large language models (LLM) behave, influencing both what they say and what they do.
Article 50(2) of the EU AI Act requires AI systems that generate synthetic text to embed detectable signals without compromising effectiveness. This legal pressure pushes developers to adopt watermarking at the model level rather than as a post‑processing step. By integrating the signal directly into the token generation process, providers can claim compliance while keeping the output indistinguishable to end users. However, the integration occurs at the core of the generation algorithm, where safety‑critical decisions are made.
SynthID‑Text implements a technique called tournament sampling. Instead of sampling tokens purely from the raw probability distribution, the algorithm introduces a hidden bias that nudges the model toward a subset of tokens that encode a watermark. The process is non‑distortionary in expectation: over many generations with random keys, the overall token distribution remains unchanged. Yet each individual generation, governed by a fixed secret key, can select a slightly different token than it would have without the watermark.
Key parameters of the implementation used in the study include:
The only component that differs between a watermarked and an unwatermarked run is the SynthIDTextWatermarkLogitsProcessor from HuggingFace, which applies the bias during logits calculation.
In a plain text generation scenario, a slight shift in token probability may appear harmless. In structured outputs—such as JSON objects, function calls, or tool‑invocation arguments—the same shift can have outsized consequences. For example, a model that must produce a JSON field "amount": 100 may instead emit "amount": 10 because the watermark nudged the token "1" over "0". When an AI agent uses these outputs to call external tools, a single altered token can change the selected tool, the arguments passed, or even the entire execution path.
Because the watermark operates at the token level, the phenomenon is called sampling drift. It is not a deterministic bug; rather, it is a probabilistic deviation that depends on the secret key and the model's uncertainty at each step.
The authors conducted two paired experiments. The first measured refusal behavior on 200 harmful prompts from HarmBench and 100 benign prompts from JailbreakBench, both with and without a fixed prompt‑injection attack. The second evaluated tool‑calling accuracy on the BFCL v4 single‑turn AST benchmark.
Results showed that:
These findings confirm that sampling drift is not merely theoretical; it manifests in real‑world safety metrics.
Traditional watermarking methods fall into two categories: post‑processing tags (e.g., adding a hidden string after generation) and generation‑time logits‑biasing. Post‑processing does not affect model behavior because the text is already produced. Logits‑biasing methods that introduce a fixed bias can degrade quality or alter semantics more predictably. SynthID‑Text aims to preserve quality by keeping the bias non‑distortive in expectation, but the study shows that even this subtle bias can ripple through downstream agent logic.
Several uncertainties remain:
Addressing these questions is crucial for regulators and developers who rely on watermarking as a compliance shortcut.
Developers integrating watermarked LLMs into autonomous agents should consider the following practices:
In summary, while invisible watermarks satisfy a growing legal demand for provenance, they also introduce a subtle yet measurable source of behavioral change in AI agents. Understanding and mitigating sampling drift will be essential to preserve both compliance and safety.
For the full technical report, see the original blog post at Lasso Security.
Asl manba: lasso.security