Skip to content
AI News

A German Court Just Made Google Liable for Its AI's Hallucinations — and Every Team Shipping Generated Text Should Pay Attention

The Regional Court of Munich ruled that AI Overviews are Google's 'own words,' not search results — gutting the liability shields that protected search engines and raising the stakes for anyone deploying RAG.

Mariana Souza
Mariana Souza
Senior Editor · Jun 10, 2026 · 6 min read

A regional court in Germany has done something the AI industry has spent years carefully avoiding: it pinned legal responsibility for a model's fabricated claims directly on the company that shipped the model. According to a report from The Decoder, the Regional Court of Munich issued a temporary injunction barring Google from spreading false statements about two Munich-based publishers through its AI-generated search overviews (case no. 26 O 869/26).

The specifics are the kind of failure mode any engineer who has built a retrieval-augmented system will recognize instantly. Google's AI Overview, per the court, falsely tied two publishing companies to scams, subscription traps, and "dubious business practices" — and crucially, it did so by mixing up information about genuinely sketchy companies with the plaintiffs and drawing connections that appeared in none of the linked sources. The model didn't misquote a source. It invented a relationship between entities and stated it with confidence.

Why the search-engine liability shield didn't hold

The legally interesting part isn't that an AI hallucinated. It's how the court reasoned about who owns the output.

Germany's Federal Court of Justice (BGH) had previously given traditional search engines and autocomplete only limited, indirect liability. The logic was straightforward: a search engine merely makes third-party content findable, so forcing operators to proactively verify every result would break how search works. That reasoning has protected search providers for years.

The Munich court drew a hard line between pointing and producing. Its argument, as reported:

  • A regular search engine just links out to external websites.
  • An AI Overview generates "independent, new, and substantive statements" by evaluating and combining content from multiple third-party sites.
  • It rewrites and judges results "in its own words and according to its own structure" — in this case opening with a confident verdict like "Yes, [company] is known for dubious business practices," then constructing its own summary, list of red flags, and tips.

Because the system synthesizes new claims rather than surfacing existing ones, the court called these "the defendant's own statements." Google built the model, Google offered it, and Google alone controls the algorithms behind it — so Google owns what it produces. The court also noted that only Google is even able to check the statements, "at least by comparing the underlying third-party websites with its own statements based on them."

That framing should land uncomfortably close to home for anyone running a RAG pipeline. The whole architectural promise of grounding a model in retrieved documents is that the output is anchored to sources. When the generation step asserts things the retrieved context never said — a well-documented failure mode of LLM summarization — you no longer have a citation engine. You have an opinion engine wearing a citation costume. The court's distinction maps almost exactly onto that technical reality.

The 'users can check for themselves' defense collapsed

Google's argument at the hearing will sound familiar to anyone who has shipped a product behind a disclaimer: users could click through to the linked sources and verify the summary themselves, and people generally know AI output "should not be blindly trusted."

The court rejected it on several grounds worth internalizing:

  • The mere possibility of disproving a statement through further research doesn't exempt the publisher from liability for making it.
  • The overview was "understandable on its own" — a self-contained statement with no signal pointing to other interpretations or to unreliable content.
  • The court drew a parallel to press law, where a publisher is liable for a standalone teaser even if readers never open the full article.

The report adds a damning empirical note: studies show users almost never click the sources in AI overviews, which undercuts the verification defense entirely. And there's a sharp internal contradiction the court flagged — if a feature is "generally recognized as unreliable," its entire value proposition collapses. You can't simultaneously market a confident answer engine and disclaim responsibility for the confidence.

The court also closed the escape hatches: Google couldn't invoke host-provider protections under the Digital Services Act or fall back on the standard notice-and-take-down process, because the third-party sources never made the false statements in the first place. With the sources unsuable and the platform shielded, victims would have had no recourse at all — a "protection gap" the court was unwilling to leave open. (Worth noting: the publishers had sent a cease-and-desist, and per the court Google "didn't respond appropriately.")

What this means if you ship generated content

This is one regional court, an interim injunction, in one jurisdiction — not a continent-wide precedent, and it may be appealed. Treat it as a signal, not settled law. But the reasoning is portable, and it's the kind of reasoning other courts borrow.

The practical takeaways for engineering teams:

  • "It's just a summary of sources" is not a defense if the summary says things the sources don't. Faithfulness — does the generated claim actually trace to retrieved context — stops being a quality metric and becomes a liability surface.
  • Disclaimers are weaker than you think. A standalone, confidently-worded answer can carry legal weight regardless of fine print, especially when telemetry shows users don't click through.
  • Grounding needs to be enforced, not assumed. Citation-faithfulness checks, claim-to-source attribution, and refusal-to-assert on unsupported entity relationships move from nice-to-have to risk controls.
  • Defamation-shaped errors are the sharp edge. Hallucinating that a real, named company runs scams is a far higher-stakes failure than a wrong code snippet — and entity-linking confusion is exactly the kind of mistake LLMs make.

The court even went after free-speech protection, reasoning that an AI's "opinion" isn't the expression of a person's acquired conviction but "the result of an algorithm," and that offering AI research is above all an expression of Google's business activity. Strip the legalese and the message to builders is blunt: if your system speaks in its own voice, you're accountable for what it says.

Sources & further reading

  1. German ruling declares Google liable for false answers in AI Overviews — the-decoder.com
Mariana Souza
Written by
Mariana Souza · Senior Editor

Mariana covers the fast-moving world of machine learning and generative AI, with a particular focus on how these technologies are reshaping development workflows. When she isn't stress-testing the latest foundation models, she's usually at a local hackathon.

Discussion 5

Join the discussion

Sign in or create an account to comment and vote.

Emma Lindgren @excited_emma · 3 days ago

okay this is actually huge, the fact that the court is treating ai overviews as google's 'own words' and not just search results is a total game changer for how we think about liability and generated text

Iris Lund @designer_iris · 4 days ago

i'm curious to see how this ruling affects the design of ai-generated content, particularly in terms of transparency and fact-checking - will we start seeing more explicit 'generated by ai' disclaimers or a shift towards more human-in-the-loop oversight?

Will Carter @weekend_warrior_will · 4 days ago

@designer_iris that's a great point, i'm thinking this could also lead to some interesting homelab projects where we experiment with different levels of transparency and oversight - like, what if we intentionally introduce 'hallucinations' and see how users react to different types of disclaimers?

Jen Okafor @rustacean_jen · 3 days ago

i love where you're going with this @weekend_warrior_will, it reminds me of some of the discussions around error handling in rust - if we can intentionally introduce hallucinations and study user reactions, maybe we can develop more robust tools for mitigating them, like better input validation or more transparent error messages

Amara Diallo @ml_skeptic_amara · 3 days ago

@weekend_warrior_will, i'm not sure that's the right takeaway here - the court's decision is about accountability for deployed models, not some academic exercise in transparency; we should be focusing on how to properly evaluate and validate our models before they're shipped, not gaming the system with disclaimers

Related Reading