Skip to content
induwara.lk
Premium
Opinionai-policycopyrightsri-lanka-tech

Seattle Times sues OpenAI: what it means for SL builders

Seattle Times and Newsday sued OpenAI and Microsoft over training data. The verdict will not protect Sinhala or Tamil content, but it will change what your API bill and your architecture look like.

Induwara Ashinsana5 min read
OpenAI and Microsoft logos over a stylised newspaper and courtroom illustration
Image: TechCrunch

On 5 September 2026, the Seattle Times and Newsday joined the OpenAI copyright lawsuit pile, filing against OpenAI and Microsoft in the Southern District of New York over the alleged use of their journalism as training data. TechCrunch reported the filing.

Two more newspapers suing is not itself news. What matters is the second-order effect: every one of these cases pushes the industry toward licensed data, and licensed data is not free. Somebody pays for it. That somebody, eventually, is you at the API meter.


πŸ” What actually got filed

The complaint is not shy. It describes generative AI systems as "rapacious consumers" of human-authored work that produce derivative imitations, and warns journalism could end up "broken beyond repair."

A few details worth holding on to:

  • The suit follows The New York Times' December 2023 case against the same two defendants, which is still running. Several other publications have filed since.
  • Both defendants had previously funded journalism projects and fellowships at the Seattle Times. Partnership money did not buy immunity.
  • A Microsoft spokesperson said the company was "surprised by the lawsuit" but is "always happy to sit down and explore solutions to this type of dispute."

That last line is the tell. "Happy to sit down" is not the language of a company expecting to win on fair use. It is the language of a company that would rather sign a licensing cheque than get a ruling on the record.


πŸ’° Why this lands on your invoice

Every publisher that sues gets one of two outcomes: a judgment, or a settlement that looks like a licensing deal. Both add a recurring cost line to the model providers. Model providers do not absorb recurring costs out of affection.

For a small team in Colombo billing in LKR against USD-denominated API costs, the exposure is asymmetric. A 15% price move on tokens is a rounding error in San Francisco and a real problem here.

Where you sit Exposure to licensing costs What you can do about it
Frontier API only (GPT/Claude/Gemini) High β€” price is set upstream, you have no lever Cache aggressively, measure per-request cost
API + open-weight fallback Medium β€” you can shift traffic Keep one open-weight path warm and tested
Self-hosted open weights Low on licensing, high on GPU Budget hardware, not tokens

If you have never actually priced the third option against the first, do it before the next price change rather than after. Our AI self-hosting cost calculator and AI GPU cloud cost calculator exist for exactly that comparison.

Key takeaway: These lawsuits are not a philosophical debate happening somewhere far away. They are a slow, legally-enforced repricing of the input that your product runs on.


πŸ› οΈ The architecture that survives either verdict

Here is the practical engineering point, and it is the reason I think this story is worth 10 minutes of a builder's attention.

There are two ways to get external knowledge into a model's answer:

  1. Bake it in β€” fine-tune or continue pretraining on a corpus you scraped.
  2. Look it up β€” retrieval over a source you are allowed to read, with the citation carried through to the answer.

Every case in this line of litigation attacks option 1. Nobody is suing over a system that fetches a document at request time, attributes it, and links back.

Fine-tune on scraped text RAG with attribution
Provenance of each claim Lost at training time Preserved per chunk
Can you remove one source later? Retrain Delete rows
Legal story if challenged "We learned from it" "We quoted and linked it"
Cost to update knowledge Full training run Re-index

If you are building anything that touches third-party content, RAG is now the cheaper answer on the legal axis as well as the ops axis. If you are pricing that path, the AI RAG cost calculator and the AI fine-tuning cost calculator will get you a number in a minute.

One habit that costs nothing: keep a sources.jsonl next to any corpus you assemble, with the URL, the licence, and the fetch date for every item. Six months from now you will not remember, and "I don't remember" is a bad position to argue from.


🌐 Nobody is filing this suit for Sinhala or Tamil

This is the part that bothers me most, and it is the part no US outlet will write.

The Seattle Times has lawyers in the Southern District of New York. Sri Lankan newspapers, Sinhala bloggers, Tamil-language archives, university lecture notes, and the several decades of local web content that ended up in the same crawls have none of that. Our content was scraped on the same terms and is represented by nobody.

The likely outcome is worse than it sounds:

  • Large English-language publishers get paid, so their content stays in the models and stays current.
  • Unrepresented low-resource languages get scraped anyway, because the litigation risk is roughly zero.
  • Some providers respond by dropping unlicensed data entirely, which means the Sinhala and Tamil coverage that is already thin gets thinner.

There is no version of this where we win by waiting. The counter-move is to build and publish openly licensed local corpora on purpose, with the licence stated up front, so that inclusion is a decision rather than an accident. A CC-BY Sinhala dataset on Hugging Face does more for local model quality than a decade of complaining about scraping.


πŸ’‘ What this means for you

The lawsuit itself will take years. Your response should take an afternoon.

  1. Know your token bill per feature. Not the monthly total β€” per feature. You cannot react to a price change you cannot attribute.
  2. Keep an open-weight escape hatch tested, not theoretical. An untested fallback is not a fallback.
  3. Prefer retrieval over training for anything you did not write yourself.
  4. Log provenance from day one. URL, licence, date. Three fields.
  5. If you publish content, pick a licence deliberately. Silence is not protection here; it is just ambiguity that someone else resolves in their favour.

Bottom line: two more newspapers suing OpenAI and Microsoft will not change your Tuesday. But the settlements these cases produce will quietly reprice the tokens your product runs on, and the teams that already know their per-feature cost and have a second path warm are the ones who will not notice.

#ai-policy#copyright#sri-lanka-tech
IA

Induwara Ashinsana

Information Systems student at UCSC and Executive Director at Ryzera Technologies. Writes about software, AI, and what it means for builders in Sri Lanka.

About the author β†’

Keep reading