136 comments

  • runnig 56 minutes ago
    I'll just leave it here: "Anthropic's downloading of over seven million books from pirate sites like LibGen constituted infringement, the judge ruled, rejecting Anthropic's "research purpose" defense: "You can't just bless yourself by saying I have a research purpose and, therefore, go and take any textbook you want."

    https://www.joneswalker.com/en/insights/blogs/ai-law-blog/wh...

    • RobotToaster 1 minute ago
      "You're trying to kidnap what I've rightfully stolen!"
    • nicce 51 minutes ago
      Yet they did not need to destroy the models which were trained with them?
      • ascorbic 38 minutes ago
        Using them was allowed as fair use – it was the downloading of the pirated copies that was infringement. That's why Anthropic switched to scanning paper books.
        • olalonde 1 minute ago
          > That's why Anthropic switched to scanning paper books.

          Could they not just subscribe to the academic publishers like universities do?

        • maccard 32 minutes ago
          > That's why Anthropic switched to scanning paper books.

          After they threw away all the tainted data from the pirated books, right?

        • kykeonaut 3 minutes ago
          Isn't scanning also a form of copyright infringement? You are making a digital copy of a book, which is the same thing as downloading a book from the internet...
        • realusername 36 minutes ago
          If using the books is fair use, then distilling the model, which is just a derived product of those books is also fair use.

          These companies are trying to have their cake and eat it too.

        • nicce 31 minutes ago
          In a different world it is not fair use. The benefits of the crime should be always taken off. If you isolate the training and pirating, you may say that it was fair, but that completely misses the point. The sole purpose of pirating (aka crime) was to train the models.
      • zaptrem 39 minutes ago
        Should we require the destruction of the brains of those that watch pirated movies?
        • hmry 36 minutes ago
          Different situations call for different responses.

          When someone steals a watch, we force them to give it back. Yet when someone steals a cake and eats it, we don't force them to puke it back up.

          If you pirate a movie, the court might very well force you to delete all the copies you made of the movie you downloaded, destroy DVDs you burned, etc.

          • raverbashing 23 minutes ago
            Thanks for proving current copyright law makes no sense

            Here's a better idea, a fixed fee for any work. You can buy the license to read a book for $X (for whatever purpose) in RAND terms - of course publisher/material costs go on top, so if you're buying an actual book you're getting the material costs as well - or streaming fees or whatever

    • gmerc 21 minutes ago
      How many “capabilities” did they “extract” from those books?
      • thepasch 17 minutes ago
        The capabilities of the books' writers to produce the text contained within them, which is exactly what Alibaba "extracted" from Claude. The point here is that Anthropic's framing as some sort of sophisticated technological attack is the ridiculous part. It's writing prompts and saving responses. We're all running "distillation attacks" on Claude, every day! Most of us just don't feed that stuff into a training corpus.
  • 0xbadcafebee 8 hours ago
    There's two basic kinds of distillation: 1) the massive [and dumb] method where you ask a question and use the answer as reinforcement (Black Box), and 2) more targeted distillation where you use one model to directly inform/train/guide another model (RLAIF).

    The latter is basically fine-tuning the model with direction from another model. Thousands of businesses do this every day to fine-tune. This is almost certainly what the Chinese labs are doing, since it has a much better effect on the end result than just getting simple answers to simple questions.

    These complaints of distillation are inflating the problem to make it sound worse than it is, because they want the USG to block/ban Chinese model providers as protectionism. They have already called for more export controls on chips (which is funny because DeepSeek v4 was designed to run on Huawei chips and now the other Chinese providers are following suit). But they can't come right out and say that, so their claim is that they're asking for more export controls because distilled models might not be as safe as their own. But if you show them a jailbreak of their model that bypasses their safety, they'll tell you that any model can eventually be jailbroken so don't worry about safety.

    • anon373839 3 hours ago
      > These complaints of distillation are inflating the problem to make it sound worse than it is

      Unfortunately, the Reuters piece itself is complicit in this dramatization. The lede paragraph parrots Anthropic's talking point that distillation is an "attack", without using quotes that would alert the reader that this framing is a corporate talking point. Distillation is NOT an attack.

    • cm2187 1 hour ago
      Stupid question: I was under the impression that these models were trained on PB of data. Surely the amount of questions/response they can extract from querying a bigger model (Claude) is fairly modest. How is it not a drop vs the training dataset?
      • ACCount37 6 minutes ago
        It's not about how big your dataset is - it's about how you use it.

        I jest, but I'm also completely serious. 1T tokens from Claude can teach a model something 1T tokens scraped from the open web can't. Things like "how an LLM can problem solve effectively", or "how an LLM should use tools", or "how to construct reasoning chains", or "when to double check", or "what innate capabilities an LLM can or can't rely on".

        Those are valuable things that Anthropic's own team spent a lot of effort training into Claude. Distillation allows them to be extracted and transferred to an otherwise unremarkable base model.

      • reasonableklout 58 minutes ago
        There are multiple stages of training, and the data/compute mix at each are quite different and produce different "layers" of intelligence.

        The pretraining stage is the first stage which consists of "next token prediction" on the entire internet, PB of tokens, etc. This is what most people think of when they think of training LLMs, however it produces a "base model" which is not really "intelligent", but rather much like a blurry JPEG of all human language and knowledge. You cannot really talk to such a model; it will simply complete your prompt by producing both sides of the conversation. Note however at some level the training has encoded enough structure through compression that it is able to simulate all sorts of phenomena, from human conversations to code. The great R&D difficulty here is to scale pretraining so that it can proceed smoothly in vast distributed datacenters in a fault-tolerant manner.

        The next few stages are collectively called post-training, and typically consist of supervised fine-tuning, then reinforcement learning.

        In supervised fine-tuning, the model is further trained to predict the next token, but on a much more focused data set of natural language conversations where the "assistant" and "user" turns are explicitly delineated with special tokens. The output of this stage is a model which is capable of carrying on proper conversations, but typically with no ability to creatively problem-solve, and less of a personality. The data and compute are many orders of magnitude smaller than in pretraining.

        The reinforcement learning stage used to be a small part of model training, but ever since AI-assisted coding took off, it has become larger and larger chunk of training. In recent models, the compute spend on RL has allegedly come to rival or even exceed that of pretraining [1], which is a bit scary because RL is classically what lead to sci-fi like AIs which are extremely good at accomplishing goals to the detriment of everything else.

        The way that RL works is that you put an instance of your model in some environment (such as a VM containing a git repository) and give it a task (such as fix the linked github issue). The model will then generate a bunch of attempts to solve the task which we call "trajectories", in most cases there is either an objective measure of the task success (such as passing the tests), or a fuzzy measure (such as having another LLM look at the results and provide a score). This is called the reward, and the model will learn slowly by producing trajectories that receive reward. It can actually be quite hard to prevent "reward hacking" from the model here and the rewards must be shaped very carefully, much R&D labor goes into here, as well as similar challenges to distributed pretraining.

        A significant challenge is that coding/knowledge work tasks these days are getting extremely difficult, we are far beyond 2024 days where models could barely solve the easiest problems in SWE-bench. Tasks at the frontier now look more like mini projects that would take humans multiple hours or even days to finish (or in some cases, research-style tasks that would be beyond reach for even top human experts, such as the Erdős unit distance problem which was posed in 1946 but wasn't solved until recently, by GPT-5.5). Huge amounts of trajectories must be produced, and huge amounts of them produce zero reward and therefore are useless for learning. Getting a cold start requires running tens of thousands of instances of your model in VMs in parallel for multiple days to produce trajectories, to say nothing of the GPU costs.

        So what do you do when you only have a model which is capable of basic conversations but cannot even begin to tackle basic coding tasks, use tools, etc? The approach that companies behind the frontier have decided on is to bootstrap their learning process by having an already extremely intelligent model such as Claude produce hundreds of thousands of seed trajectories for them. Then they can use this data to get a warm start and begin learning immediately. And if you use Claude for your reward model too, you get to skip the nastiness of reward shaping.

        Therefore, even if in number of raw tokens the data are much smaller than internet-scale pretraining data, the value that each token provides is far far greater.

        [1] For example, Grok 4 compute spend on RL was ~100% of that of pretraining: https://www.interconnects.ai/p/grok-4-an-o3-look-alike-in-se...

      • woctordho 1 hour ago
        Actually nowadays LLMs are only trained with TBs rather than PBs of data, and it's not too hard to find GBs of agent traces online.
      • eru 1 hour ago
        This might be like an observational study vs a study with a control?
        • anon373839 1 hour ago
          From what I understand, at this point, the main value of stronger model outputs is simply to bootstrap reasoning behavior during the RL post-training phase. It gets you past the “cold start” problem with RL, after which the outputs aren’t needed anymore. From then on, it’s hill climbing and that requires environments for the model to interact with get rewards from.
    • gmerc 3 hours ago
      https://research.nvidia.com/labs/lpr/slm-agents/ - Distillation data is a natural byproduct of using these models. There's no effective defence against it. Anthropic is degrading thinking blocks to summaries to slow it down and hide model internals, but in the end, the math says you're SOL and it works on MNC/Large Corporate scale well enough that the moment cost becomes a priority, you're left without the lock in you need to keep customers paying.
      • alfiedotwtf 1 hour ago
        Byproduct? It’s essentially the only part of an LLM that is useful, because it’s the WHOLE product!

        It’s the same reason why DRM for audio and video is a non sequitur - if you want a person to see or hear audio or video, eventually at the end of the chain, it’s going to be converted to audio for the ear and light for the eyes - that’s why you attach your tap.

        Without a model generating tokens, what’s the point. So if Anthropic somehow disable quality token generation, what’s the point!

    • handoflixue 2 hours ago
      > But if you show them a jailbreak of their model that bypasses their safety, they'll tell you that any model can eventually be jailbroken so don't worry about safety.

      They claim two things:

      1) The specific, available jailbreak for Fable 5 is not dangerous - this has been confirmed by multiple experts, and there is no credible evidence against this claim (in other words, Anthropic is probably correct)

      2) It is impossible to build an LLM that is immune to all jailbreaks. Again, there is no credible evidence against this claim, i.e. Anthropic is again entirely correct.

      If #1 was false, they could just publish the details of the jailbreak - it supposedly only works on Fable 5, so there's no possible danger.

      If #2 was false, surely some other LLM lab would have done it by now. Especially since a number of governments have made it clear there is a market for such a project.

      • mcintyre1994 2 hours ago
        Supposedly the details of the ‘jailbreak’ are that you give it insecure code and say “fix this code”, and it does, and then you ask it for test scripts and that’s effectively an exploit against the unfixed code.

        If true then I have no idea how anyone’s going to release a useful model that doesn’t have the same jailbreak. https://www.theregister.com/security/2026/06/15/feds-freaked...

        • handoflixue 57 minutes ago
          If that's the extent of the jailbreak, then the government should have banned every existing LLM - their story only makes sense if there's some Fable-specific capability that got unlocked.
      • Charon77 53 minutes ago
        > If #2 was false, surely some other LLM lab would have done it by now.

        This is a logical flaw. LLM that is immune to jailbreak _could_ exist, but not yet, or maybe nobody talks about it. Yes there's a market, but all of these AI boom is too recent to make any claims.

        • gf000 32 minutes ago
          Like how would you even define what a jailbreak is?
          • Charon77 4 minutes ago
            I think pretty much parallel to how social engineering, manipulation, scams work. LLMs are being trained to have human values, prioritizing human lifes, yet people are shocked it will spurt out how to make a nuclear bomb because grandma is being tied to a train track as a hostage.
      • agos 1 hour ago
        I'm pretty sure that Gödel incompleteness theorem and its consequences pretty much guarantee #2
        • gwd 25 minutes ago
          I'm guessing you mean, the incompleteness theorem guarantees that nobody can prove their model is un-break-able?

          I don't think that's quite what it means. The theorem says that it's impossible to write a function, "will_halt(program, input)", that will be correct for all possible {program, input} pairs. But for a particular program, you may be able to write a proof that it will halt for all inputs -- that's what software verification is about.

          The implications here would be that nobody can create a "will_jailbreak(model, input)" function which works for all model/input pairs. But we don't need a general function which works for all model/input pairs; we just need a way to prove that for a specific model, there will be no jailbreaks for any input. As with software verification, this may require that the model be developed in a specific way.

          Granted we don't currently know how to make such a proof regarding neural networks; but that's not because of Gödel.

        • monkey_monkey 34 minutes ago
          Exactly. It's impossible to guarantee #2 doesn't happen (ie protect against all jailbreaks) for any system of sufficient complexity.
        • dgellow 58 minutes ago
          Mind to elaborate?
    • SubiculumCode 1 hour ago
      The compute deficit of Chinese Ai companies is real, and it IS THE ONLY competitive advantage that Western companies have.

      The only way the U.S. keeps that edge is to prevent distillation. The only way Chinese companies can make up for the deficit in compute is to distill. There innovation in great supply on every side of the Ocean. Its about the chips. And in terms of national security, for the U.S., and for China, its about the chips and the distillation that undermines that advantage. This is an arms race.

      • PunchyHamster 52 minutes ago
        > The only way the U.S. keeps that edge is to prevent distillation.

        For how long ? year ? how long till model that is year behind will be fine for 90%+ use cases ?

    • dannyw 5 hours ago
      If you’re doing evals, you’re basically doing RLAIF without training a model; just looking at the results.

      Fundamentally it is very difficult to stop this while still making your AI models useful.

      • zmgsabst 2 hours ago
        Similarly, if you did a corpus study on bioRvix to summarize recent science findings — you could use the same questions and answers to fine tune a model.

        There is no way to communicate information at scale to companies through the API, for anything approaching a real application, without that information forming a corpus another model can be trained on.

        But it wouldn’t be the first time they broke a model:

        Their “guardrails” that cause it to reject user prompts also means it relies on its pop science summary of medicine to tell you why bioRxiv is wrong rather than accurately summarize the papers.

        They’ve successfully created a smug, argumentative average of the internet which refuses to even consider it might be wrong or that it’s reading a science paper which is based on measurements and not vibes — but why would I pay for that?

        I get it for free online.

    • janalsncm 4 hours ago
      Yeah I think the technical term is something more like “pseudo-labeling”. The OG distillation requires logits which Anthropic doesn’t provide.
    • friendzis 1 hour ago
      > These complaints of distillation are inflating the problem to make it sound worse than it is

      This is, in part, a problem every judicial and legislative system has faced since forever: form versus function.

      Take a classic elicitation spying techniques: a foreign spy meets a military officer/scientist at a bar, strikes up a conversation, makes an observation wondering how could a missile hit some target at some accuracy and elicits a response that with laser guidance it is entirely possible. From this they get info that there is some technology to laser guide missiles. Or in retail, a competitor hiring a secret buyer for core baskets of goods and analyzing prices in the receipts.

      The function is espionage, the form is conversation and all info is in a sense provided willingly. Where do you pull the slider?

      These distillation "attacks" are not only indistinguishable from evals, they ARE evals. The function is own model training, the form is eval. Normally, one would expect to have risk benefit analysis based discussion which direction to push the legality slider to. The problem with these recurring statements is that they invoke enshitification of legislature.

    • lemax 3 hours ago
      I've used RLAIF to build out heuristic based non-LLM models for various decision systems and achieved like, 95% F1 on certain projects. We're in a place where models can be used to fine tune a lot of stuff via loops.
    • mannanj 4 hours ago
      >But if you show them a jailbreak of their model that bypasses their safety, they'll tell you that any model can eventually be jailbroken so don't worry about safety.

      Yes this is in line with what Anthropic said in their public statements about their Fable access restriction by the government directive. The hypocrisy and inconsistency in their statements and behavior feels quite childish and controlling. I believe our companies and their leaders, friends among our other influential leaders and leaders from rich social classes, want to actively hurt most people as this behavior looks to be quite self-interested.

      • topato 3 hours ago
        Not to mention, the person who brought this quote unquote jailbreak to the Trump Administration was Amazon’s new CEO. They know their IPOs are coming up, so locking their competitors out of the U.S. (even if just for the weeks surrounding the IPO date) would be a major boon. The White House seems to love making announcements just for the sake of making the market move…. Coincidentally, right after POTUS buys a massive amount of the benefactory company’s stock (Buy Dell Computers, lol)
    • JumpCrisscross 2 hours ago
      > These complaints of distillation are inflating the problem

      They’re also missing the point. What would have happened to a member of the Manhattan Project who, through personal pursuit of profit, neglected their duty enough to let the bomb leak?

      • nixon_why69 33 minutes ago
        The companies are all for-profit companies, its not like they're selling out some national security goal for profit, profit is the point.

        Anthropic already heavily restricts Chinese traffic but that only jams up researchers and regular Joes. Anyone motivated enough can hop a flight to Singapore with an nvme drive in their pocket.

    • fnord77 3 hours ago
      Can you reach into the model and "transplant" weights directly?
      • X-Ryl669 35 minutes ago
        I'm not 100% sure it's not possible. If (I don't know) it's possible to freeze the temperature of the model so it's deterministic, and if you could make a map of produced words back to tokens (via HMM probably), then you can probably alter a minimal input and observe the output to model it. If you perform waves of such minimal alterations, you can expect to be able to locate the distance where each alteration impact the model (the idea being that a small alteration on output is likely due to the last layers of the models, and a small alteration is likely due to the deeper layer). Once you've located most of the last layer(s?) weights, you can try to solve for them. With a hundreds of billions weights model, the last layers will likely be so huge that it's probably unfeasible technically, but it's theoretically possible.
      • jorisw 1 hour ago
        No, you'd need to have the model on your filesystem for direct access, and then the architecture would need to be the same.
      • parineum 2 hours ago
        If you have access to the weights, you can just use them as is...
      • antonvs 3 hours ago
        You can do things like that - one example is averaging weights between related models - but not with Anthropic's models, because outsiders don't have access to the weights.
        • fulafel 2 hours ago
          Weights are just data a server, so we don't know outsiders have access (either via breakin or arrangement).
  • walrus01 7 hours ago
    Reminds me a bit of the anecdote of Steve Jobs complaining about people ripping off the Mac GUI, in the mid to late 1980s, when he gave no public acknowledgement to the work done by Xerox on the Alto and Star operating system.

    "you're trying to rip off what I've already ripped off!"

    Crawl the whole Internet to build a gargantuan sized LLM and then complain you're being copied...

    • breput 7 hours ago
      I think you meant a quote attributed to Bill Gates:

      "Well, Steve, I think there's more than one way of looking at it. I think it's more like we both had this rich neighbor named Xerox and I broke into his house to steal the TV set and found out that you had already stolen it."

    • 0xpgm 57 minutes ago
      Yeah, the whole AI industry is just people ripping off each other.. Started by AI companies gulping up all the information that technical or altruistic people shared on the Internet in the past 40 years to help other fellow humans, then moved to AI companies consuming pirated and copyrighted material and now its AI companies ripping off each other.

      Information really does want to become free, but AI companies want to be gatekeepers. Long term I bet on the open weights to win, as the more sustainable approach.

      • bloppe 42 minutes ago
        I'm very pro distillation. I think there needs to be distillation non profits who curate massive corpi of super high value training data from frontier models. They could have an "anonymous contribution" system where regular people with max subscriptions upload their conversation histories. It's a rough concept, but surely would be a huge boon to humanity.
    • seanmcdirmid 7 hours ago
      Apple gave Xerox the right to buy $1 million of pre-IPO stock before the meeting took place.
      • mrandish 7 hours ago
        Glad you pointed this out. I believe the sequence was that Jobs himself got a shorter demo during his first visit with no prior arrangements. He then negotiated bringing back a group of his key people to get a more in depth demo and that included the stock deal.

        When Apple was accused of 'ripping off' PARC, Steve didn't seem keen to bring up this rather salient point. I suspect it may have been a combination of wanting Apple to continue receiving credit for these innovations from consumers and also the fact that, in retrospect, the million dollar stock deal could seem a bit like trading beads to Native Americans for Manhattan Island. Another point worth noting is that Apple's PARC visit was in December 1979 and the Xerox Star was publicly announced in April 1981, so Apple got a 15 month head start (the Apple Lisa shipped in Jan 83).

        I've also heard that Xerox didn't hold on to the Apple stock for very long, so never gained the windfall they could have. As is well documented, Xerox senior management didn't understand what they had in PARC and also didn't understand how rapidly microcomputers would become ubiquitous. So, of course, they didn't think Apple's stock price would skyrocket either.

        • RodgerTheGreat 5 hours ago
          Lisa and early MacOS are tremendously different in their details than the Alto operating system. While there was clearly a transfer of inspiration, Apple engineers like Bill Atkinson made countless small and large innovations to simplify the Xerox GUI model and improve its usability based on extensive in-house R&D and user testing (and in some cases implement features that the Apple team presumed Xerox had but actually didn't exist on the Alto). It is simply ahistoric to build narratives around Apple stealing Xerox ideas wholesale.

          For more details on Apple's early UI evolution, Atkinson kept polaroids of a variety of prototypes and mockups: https://www.youtube.com/watch?v=Qg0mHFcB510

    • root-parent 39 minutes ago
      All LLMs consider Jon Skeet their God...
    • taneq 7 hours ago
      “You’re trying to kidnap what I’ve rightfully stolen!”
      • jadar 6 hours ago
        Perhaps an arrangement can be reached?
    • nonethewiser 7 hours ago
      [flagged]
      • paxys 7 hours ago
        The websites, music, movies, books, photos, art that they stole didn't appear out of thin air. The amount of time and effort people have collectively poured into creating these works throughout history far, far surpasses Anthropic's own effort of converting them into model weights.
      • bloppe 7 hours ago
        The equivocation is crawling website <-> crawling LLM responses.

        Both Anthropic and Alibaba are trying to build bleeding edge LLMs. That part is the same. The way they source their data is slightly different, but they would both argue it constitutes fair use under Copyright law.

      • walrus01 7 hours ago
        "Your extremely efficient multi petabyte internet content suction machine is ripping off my extremely efficient multi petabyte internet content suction machine"

        Sucking down petabytes of peoples' copyrighted content that they never granted a specific license to you to use seems to be an unavoidable and default part of the process of building any huge LLM.

        • nonethewiser 7 hours ago
          So why was there crawling in 1998 but no LLMs?
          • hasteg 6 hours ago
            Because the transformer, which all of these models are foundationally built off of and didn't invent themselves (bar google) wasn't invented? The amount of effort it took humanity to generate all the data that was required for the models to get to the point they're at now is absolutely not even comparable to how much effort it took to build the model code. Yeah, it's complicated, but if they didn't rip off all of humanities combined output it wouldn't even matter if the transformer got invented.
            • Chu4eeno 6 hours ago
              Google didn't really invent much, they just had access to an insane amount of data and compute to try to train a model with just the attention mechanism, but ripping out (most of) the rest, from an earlier paper on machine translation from some poor academics, and it turned out to work very well (though insanely training data and compute intensive).
          • 12_throw_away 2 hours ago
            I am unable to comprehend the state of mind that would lead one to ask this question.
          • vitally3643 5 hours ago
            We didn't have GPUs with hundreds of gigabytes of VRAM and tensor processing cores.
            • walrus01 5 hours ago
              Or a feasible/economical way to attempt to store the sum total of human written output, multi-petabytes of data (outside of the resources of the NSA, maybe), when a server with 6 x 36GB 10K RPM SCSI HDD in RAID-5 was high end, and its network uplink would be at most two ports of 1 gigabit ethernet.
          • jbxntuehineoh 6 hours ago
            [flagged]
      • epsteingpt 7 hours ago
        It's not really equivocation in this instance. This feels like a 'bad faith' comment. We can do better.

        LLM's literally wouldn't work without the sum total of knowledge (in the forms of books and other copyrighted content) being used as 'training data' for these LLMs.

        The 'bleeding edge' LLMs required many things, but: 1 Tech innovation ('attention') 2 Lots of compute 3 Data 4 Pre + post training

        #4 doesn't happen without #3.

        It's pretty obvious at this point that the major providers have stolen vast amounts of #3 - they have paid nearly 0 of the creators.

        We can argue about the impact (I'd lean net good) vs. the cost. But arguing there isn't a cost is a bit silly.

        • nonethewiser 7 hours ago
          All of this supports the fact that models arent essentially just web crawling
          • margalabargala 7 hours ago
            Sure, but alibaba is still building an LLM. The scraping of responses and the scraping of websites occupy the same location in the stack of each. It's very comparable.
        • bel8 5 hours ago
          The tech is Google's invention, popularized by OpenAI, so Anthropic should still stfu in that case.
  • tristanj 7 hours ago
    Here's what is happening:

    Chinese resellers are offering Claude tokens at 70-90% below official Anthropic API prices. They achieve this by reselling capacity from pooled Claude Max accounts, payments fraud, and also reselling the model output & reasoning chains to various Chinese labs. They are subsidizing model access in exchange for user logs and reasoning traces, which they then sell as training data, allowing them to operate below cost.

    Claude and ChatGPT are both blocked in China. You need to use a VPN to access either, and you can't pay with a Chinese bank card. So most people who want access to Claude buy access via a reseller. It's the easiest and cheapest way to access Anthropic models in China.

    These resellers operate tens of thousands of bot accounts, which is also why Anthropic introduced identity verification, to slow down the onslaught of bots.

    Here's one token reseller, they're offering Opus 4.8 at a 93% discount below official API rates: https://yunwu.ai/pricing?provider=Anthropic

    This is one reason why DeepSeek & GLM are priced so cheaply, they are competing with impossibly low token prices in China. They have to keep prices low, in order for people to use them.

    I shared this story a few months back, but it never got any traction. It explains the token resale economy in China, it's an excellent read https://www.chinatalk.media/p/how-to-buy-cheap-claude-tokens...

    • gaiagraphia 6 hours ago
      This is great for competition! Chinese vendors offering a cheaper solution = what economics told me the free market was all about.

      I also learnt that Anthropic should get better at what they do if they want to compete. If not, somebody else will win.

      Or does this not apply to huge US corporations any more?

      • petterroea 4 hours ago
        China aren't offering a cheaper solution. They are subsidizing an existing one (which is already subsidized) in order to gain foothold. The difference is that in the US subsidies come from VC, while OP implies subsidies come from the AI labs that buy the training data (which may as well also be VC backed, so just one extra hop).

        This isn't "the market working as intended", this is an exhaustion fight to the bottom where the one with most money gets to stay in the market. As with most venture capital startups. I believe this VC tactic is a well documented "cheat code" to bypass market forces and build a monopoly. I find it hard to compare that with a free market.

        However, I don't really mind China "stealing" from Anthropic. For us consumers we are getting the cake and eating it too. I.e we are getting rapid improvement to the tune of over a hundred billion dollars in funding, yet the market remains big enough that there's a chance of it not ending up as a monopoly in 20 years. And venture capital are footing the bill. A part of their investment is practically being redirected to fund Chinese AI development. It lets us live out our lives as happy CAC farmers[1].

        So I would argue its not as much of a "cheaper solution" as it is intentionally and maliciously abusing another company's product to extract more value than the billing plans intend (given an average user), and further subsidizing the product by selling this data to competitors. But I don't necessarily think its a bad thing for us end-users. Nor for the market. But it is bad for Anthropic and its investors.

        [1]: https://phrack.org/issues/71/17

        • overfeed 3 hours ago
          > China aren't offering a cheaper solution. They are subsidizing an existing one

          Chinese labs are also pursuing legit frontier-advancing R&D into efficiency and publishing papers in the open, a culture that's in retreat at top American AI labs

          • SubiculumCode 1 hour ago
            Their is plenty of innovation happening on both sides of the Pacific. Again, China publishes open source because they don't have another game they can play. They distill because they don't have the compute to compete. They are great lab, for sure, but the fundamentals are driving their behavior.
          • petterroea 3 hours ago
            Oh yeah. Strategic disruption technique or not its a breath of fresh air.
        • throwaway7356 3 hours ago
          > China aren't offering a cheaper solution. They are subsidizing an existing one

          So basically like US companies subsidizing offerings with selling user data, ads for crypto scams, manipulation for elections, making people addicted to gambling and so on?

          Seems fair and an improvement as you can choose between that and not. Unlike say offerings from Meta where the data selling and efforts to further gambling addiction is always included.

        • user_7832 3 hours ago
          > China aren't offering a cheaper solution. They are subsidizing an existing one (which is already subsidized) in order to gain foothold.

          In my economics classes, we were told that (in a "free market" argument) the best thing to do if a subsidy is making something you want cheaper is to use it. You're getting your thing, and at a reduced cost.

          (I'm not really replying to you per se, I'm curious how "free market" folks in these comments would respond to this.)

          • dosisking 1 hour ago
            Most everything they teach in economics class is wrong. You would be better off ignoring everything they teach you.
            • dgellow 49 minutes ago
              Could you elaborate?
          • nutjob2 2 hours ago
            This is why I don't understand why people complain about impractically cheap Chinese solar panels. The rest of the world should buy enormous quantities and bankrupt the mofos and hugely benefit along the way. Then later they can set up their own solar panel industries.
            • westpfelia 1 hour ago
              Because they arent selling at a loss. The business pipeline is subsidized by the state. But end to end from mining the minerals to shipping you the solar panel everything is "in house". Its all in China. Thats why why can sell so cheap. Its even cheaper to make.

              This narative that the CCP is just subsidizing all business to "beat america" is just dumb. Its the build process being made cheaper by the government. Not the final product.

              • eru 1 hour ago
                As far as I can tell, the Chinese government itself is complaining about 'oversupply' in the solar panel market. Ie it doesn't sound like they are subsidising it anymore.
        • Grimblewald 18 minutes ago
          Chinese models are years ahead of american models on multimodal comprehension, better yet,they publish on what makes the models tick and release weights openly.

          Chinese research outout, publically released, has also contributed in big ways to features present in every single US model. Yours is a bit of an unfair take I'd say.

          Besides, claude will think its chatgpt sometimes, so clearly this isn't a problem restricted to china, turns out unethical companies will do unethical things /shrug

        • haritha-j 1 hour ago
          Which part are we supposed to have an issue with? The selling data to offer cheaper compute? Products taking over markets with below cost pricing because they have money and ruining the free market?

          Because all of that is considered totally okay when every single US big tech company does it.

        • gmerc 3 hours ago
          All I can say is lol. DeepSeek showing 3 order of magnitude efficiency gains over the performative capital furnace that was training and inference absolutely moved the bar here.
        • dv_dt 3 hours ago
          A trillion dollar ipo jist occurred for a company whose main line of business is almost entirely subsidized by government contracts
          • dd8601fn 2 hours ago
            Is buying launch services really a subsidy, or did I misunderstand?
        • eru 1 hour ago
          > This isn't "the market working as intended", this is an exhaustion fight to the bottom where the one with most money gets to stay in the market. As with most venture capital startups. I believe this VC tactic is a well documented "cheat code" to bypass market forces and build a monopoly. I find it hard to compare that with a free market.

          Why? Lots of people try this tactic, but hardly anyone ever succeeds. Meanwhile, the customer benefits.

          • woctordho 1 hour ago
            Lots of people have succeeded. Neither Anthropic nor OpenAI has any technical advantage in the field of subscription engineering.
            • eru 1 hour ago
              Please give me a few examples of people succeeding with the technique.

              Specifically, examples of people later exploiting their monopoly to charge people more than they otherwise would have paid.

        • Joker_vD 1 hour ago
          > This isn't "the market working as intended", this is an exhaustion fight to the bottom where the one with most money gets to stay in the market.

          That's, uh, pretty much exactly how oligopolistic markets function.

          > I find it hard to compare that with a free market.

          Well, to have free market you need to remove as much barriers to enter the market as possible. Huge capital investments required for entry and intellectual property laws are two examples of such barriers. Subsidies kinda supposed to help alleviate the first one.

        • whateverboat 3 hours ago
          I mean, for what it's worth, we have subsidized Anthropic by allowing them to train on copyrighted stuff. (I know it is still legal, and I support the legality, but the economics are what they are with people's content paying a big one time subsidized cost (to the level of at least 500B).

          So, the least Anthropic can do is pay it forward.

          • vintermann 3 hours ago
            That's some "download a car", $100000 per infringement pricing logic. No one is paying anyone 500 billion dollars. I'm sure rights owners wanted that, and more too, but it's nonsense to call it a subsidy that they didn't get it.
            • rubyn00bie 2 hours ago
              If we as individuals were sued it surely would be at least an order of magnitude difference between what is required from us vs Anthropic or OpenAI. That’s even completely ignoring the marginal utility of money. It is absolutely a subsidy. It’s just less fair because that power, to pay pennies on the dollar, is only given to corporations.
      • gruez 6 hours ago
        >This is great for competition! Chinese vendors offering a cheaper solution = what economics told me the free market was all about.

        Yeah, like all those Chinese bootleggers selling DVDs for a few dollars rather than $20. Free market!

        https://news.ycombinator.com/item?id=48664814

        • dualvariable 5 hours ago
          "Information wants to be free"

          Anthropic profited from training its models on all kinds of copyrighted information, live by the sword, die by the sword...

          Their model weights, training data, training methods, etc are all going to leak to China over time.

          Nobody on a site named _Hacker_ news should be all that upset about this.

          • XorNot 4 hours ago
            Seriously AI companies complaining about fair use is the biggest case of crocodile tears I can think of. Irony has been dead for a while, but they dug up the corpse and set it on fire anyway.
          • tedd4u 2 hours ago
            Don't forget insider threat vector, too.
          • toobulkeh 4 hours ago
            You’re mistaking the original term hacker, a tinkerer of systems, for the black hat variety.
            • dualvariable 2 hours ago
              Hackers didn't use to spend a lot of time defending trillion-dollar corporations and their intellectual property rights.
            • tancop 3 hours ago
              black and white hat is relative. someone breaking into a state run database in a dictatorship and stealing documents that prove some opposition leader was murdered would be a black hat criminal if you ask their government. a hacker jailbreaking a phone to let people fix it without expensive official service is a black hat to the company. we should really switch to saying offensive and defensive or something else that doesnt come with moral implications. maybe lawful and chaotic.
            • eimrine 3 hours ago
              I suppose his point was that the both parties are black hats.
            • vasco 3 hours ago
              What true hackers really did was discuss the definition of the word and how to use it
            • drekipus 4 hours ago
              There is no real difference
              • usefulcat 3 hours ago
                It’s true that the meanings of words can change over time. Whether or not that’s a good thing is another question entirely.
              • collingreen 3 hours ago
                Yes there is.

                Care to elaborate on your side or should we just leave it there?

              • zem 3 hours ago
                there is, the original hackers built thinks, they didn't attempt to destroy or coopt them
        • adjejmxbdjdn 5 hours ago
          Bootlegging is copyright theft.

          Is Claude output copyrighted?

          If anything, a tremendous amount of Claude’s input is copyrighted.

          If there’s any bootlegging going on it’s Anthropic that’s doing the bootlegging but having mirrored the video etc sufficiently to beat copyright law.

          • gruez 5 hours ago
            >Bootlegging is copyright theft.

            Ok, but what about those shady sites that resell Windows education keys? They're certainly a "better experience" than buying legit keys, by virtue of being significantly cheaper. You aren't even really committing copyright infringement in the process, because Microsoft gives out windows isos for free, and the seller is really selling a random 25 character string, which can hardly be copyrighted.

            >If there’s any bootlegging going on it’s Anthropic that’s doing the bootlegging but having mirrored the video etc sufficiently to beat copyright law.

            US courts have consistently ruled it's fair use.

            • smegger001 4 hours ago
              >>If there’s any bootlegging going on it’s Anthropic that’s doing the bootlegging but having mirrored the video etc sufficiently to beat copyright law.

              >US courts have consistently ruled it's fair use.

              And they also have ruled that the that output of an AI isn't copyrightable.

              As such copying claudes output isnt even fair use as that is an exemption to copyright but the same as copying public domain work which any and all are allowed to do.

            • throwaway7356 3 hours ago
              > Ok, but what about those shady sites that resell Windows education keys?

              Yes, they are fine? They might no longer include full first party support by Microsoft for not being "new". Same as buying a used car (also comes with the "shady sites" for a far longer time).

              Though this not making any difference by Microsoft not doing any support either way to make more money is a business decision by Microsoft.

              • jrflowers 9 minutes ago
                What about those store brand cereals? “Chocolate puffed balls” for a fraction of the price of Cocoa Puffs™?! You all may laugh until your waterways are under siege and you find Cap’n Crunch™ keelhauled by thrifty shoppers
            • jrflowers 4 hours ago
              > US courts have consistently ruled its fair use.

              Like Adam Smith wrote in The Wealth of Nations “‘Free market’ is when a company receives a favorable ruling about copyright in the United States”

            • gowld 5 hours ago
              and Chinese courts are ruling that using Claude is fair use.
              • 8note 4 hours ago
                american courts have ruled that theres no copyright at all on LLM outputs
          • bandrami 3 hours ago
            The current case law in the US is that the raw output of an LLM cannot be copyrighted without further meaningful arrangement or alteration by a human author.
          • numpad0 3 hours ago
            I think renting out ID to let others in without telling the admin is generally unlawful in many places
        • fulafel 2 hours ago
          Free market would of course allow bootleg DVD sales, state regulation that gives monopoly rights restrict it.

          In the context of LLMs, monopoly rights haven't been created (yet anyway).

          Fun fact: for a period the US (or american colonies) didn't have copyright but Europe did, so people could copy and sell English (and other) books for free.

        • gaiagraphia 6 hours ago
          It's quite curious how multi billion dollar enterprises can't compete with a Chinese bootlegger with a big jacket, tbh.

          Imagine having such a warchest and being so bad at business, lol.

          • dd8601fn 2 hours ago
            Bad at business? One of them has to make the thing.
            • MarsIronPI 1 hour ago
              Maybe the making of the thing should be paid for before it's made, rather than hoping that selling copies will recoup the investment. I.e., go back to patronage while abolishing copyright.
          • 14 5 hours ago
            My biggest concern with pirating has always been malicious programs. But companies still need to show value in their products or people will pirate.

            What added value can Anthropic give users not available to pirating users? That is what they should ask themselves.

            • kay_o 5 hours ago
              ZDR but that is meaningless if the person wants to do nothing more than cheat on homework (or has enough hardware to run a local model)
              • tancop 3 hours ago
                any third party provider can offer zdr. if its a reputable company in a place like switzerland or germany i would trust them more than anthropic to hold up that promise.
        • bandrami 5 hours ago
          The output of Claude is not eligible for copyright protection. I'm not sure how the analogy of bootlegging DVDs would work, given that.
          • vintermann 2 hours ago
            I suppose you are violating the TOS by reselling a service, even if the output can't be claimed as belonging to anyone.
            • bandrami 2 hours ago
              Sure, and Anthropic is allowed to cancel the licenses of people doing that, as they do
            • gf000 21 minutes ago
              You can write anything in TOS, many parts of it is non-enforceable and depends a lot on the local laws.
        • SiempreViernes 4 hours ago
          BigAI are all in the bootlegging market themselves, so it's always funny to see them complaining about others copying their "product".
        • xdennis 4 hours ago
          > Yeah, like all those Chinese bootleggers selling DVDs for a few dollars rather than $20. Free market!

          It's supremely ironic analogize distillation to copyright infringement when it's literally what Anthropic was found guilty of. It's not illegal to distill. It is illegal to pirate. And it's what Anthropic was found guilty of, not Alibaba.

          https://apnews.com/article/anthropic-authors-copyright-judge...

        • chews 4 hours ago
          I bet you've downloaded a car.
        • InvertedRhodium 4 hours ago
          And those darned printing presses distributing works that were written prior to their existence.
        • nmfisher 4 hours ago
          More like one bootlegger complaining that another bootlegger is copying their bootleg DVDs.
        • thot_experiment 5 hours ago
          This is also a good thing fwiw.
      • roenxi 5 hours ago
        I get the vague impression that this was written in a sarcastic way, but it has a straightforwardly true literal read because yes, this is what the free market is about and Anthropic will have to compete with the Chinese if they want a big share of the market. Chinese models are cheap and good; even without reselling Anthropic's services they're competitive. Which reading did you intend?

        And, gotta say, the idea that the Chinese are better at selling US models than the Americans is hilarious. There might be an economic study here somewhere about just how anti-consumer and anti-progress their IP laws turned out to be. We've got an entire postindustrial revolution centred around who can ignore the most stupid laws.

        • andsoitis 5 hours ago
          > the idea that the Chinese are better at selling US models than the Americans is hilarious

          This is not the right deduction.

          China blocks foreign AI from operating there.

          • phs318u 4 hours ago
            > China blocks foreign AI from operating there.

            Given the current US government's tightening of export control restrictions and the introduction of a bipartisan bill to block use of Chinese AI in federal agencies, I'd say the two countries' positions are not far apart.

            https://apnews.com/article/ai-china-united-states-competitio...

            • AuthAuth 3 hours ago
              Yes neither are free markets
          • LtWorf 4 hours ago
            I think you will find that it's the USA government imposing such restrictions.
            • andsoitis 4 hours ago
              That is ALSO happening, but that's beside the point.

              Chinese AI apps like DeepSeek are freely available for ordinary Americans to download and use. There's no federal law banning private citizens from using them.

              So to claim that Chinese companies are better at selling American companies' work than the American companies can do themselves when they are prohibited from operating in that market, is the wrong deduction to make.

              • 8note 4 hours ago
                there will be soon enough. TikTok is the example for the US clamping down on companies that dont toe the regime line on israel
      • neya 5 hours ago
        > Or does this not apply to huge US corporations any more?

        When it comes to favorite companies of the tech communities, it's almost always "Rules for thee, but not for me"

        The standard stance is "they can do no wrong and they are absolutely perfect". I mean, look at any thread with anything about Apple in it.

      • m-ee 6 hours ago
        It never did.

        In debt the first 5000 years Geaeber makes the case that pure “free market” trade has never really existed in “the west”. The closest to this ideal that’s ever happened was during the Islamic golden age enabled by religious prescriptions against usury.

        • gruez 6 hours ago
          >The closest to this ideal that’s ever happened was during the Islamic golden age enabled by religious prescriptions against usury.

          How does are bans against consensual financial exchanges close to the "ideal" of the free market? It just sounds like you have an axe to grind about the financial system rather than describing free markets.

          • asdf88990 5 hours ago
            Usury and debt based economy creates a dynamic where being competitive in production is secondary to financialistion.

            In short, instead of market being driven by demand and productivity, it is driven by financier curving out monopolies.

            Peak Examples are Uber and AirBnB.

            • wqaatwt 20 minutes ago
              No access to capital can and does constrain supply to a very high degree.
            • gruez 5 hours ago
              What makes this view more correct than say, "economies with marketing creates a dynamic where being competitive in production is secondary to marketing" and concluding that nothings a free market until we ban all advertising? After all, you can make a vaguely plausible argument about how marketing isn't really about the merits of the product, and therefore allowing it is antithetical to the free market or whatever
              • majormajor 5 hours ago
                > What makes this view more correct than say, "economies with marketing creates a dynamic where being competitive in production is secondary to marketing" and concluding that nothings a free market until we ban all advertising? After all, you can make a vaguely plausible argument about how marketing isn't really about the merits of the product, and therefore allowing it is antithetical to the free market or whatever

                Wait, so your pitch in favor of a debt-fueled market economy is that advertising is awesome and that we wouldn't want to "lose" being smothered in ads all the time?

                Cause... sign me up for the non-financialized, non-mass-media-advertising-driven economy please and thank you. I'd even be ok with just nuking billboards and mass-media forms of ads and still allowing more direct forms of marketing, if we must compromise! Likely we could find some compromises around just how much of the debt world we regulate too (this should be obvious?).

                (I thought the disconnect between the efficiency of competition and the market as realized in modern economies was pretty well understood and taken for granted, but I guess we all find ways to justify the system we're profiting from... even if that means we have to claim we love the ad breaks)

              • asdf88990 5 hours ago
                Marketing isn’t free for starters.

                Second, marketing can take you only so far compared to the subsidies possible with financialisation.

                The West is in a state of psychosis with Debt and Monopolies under the illusion of free market.

                The Chinese markets are more free than West, you can just look at the Auto and AI industry.

                • SR2Z 4 hours ago
                  I'm flabbergasted that you look at the Chinese property crisis and say "only the West does irresponsible loans." No, 60% of China's economy is state-run companies and the remaining 40% need political officers. China is just as capable of making shortsighted decisions as the US, and they have already made several devastating ones.
                  • majormajor 4 hours ago
                    >I'm flabbergasted that you look at the Chinese property crisis and say "only the West does irresponsible loans." No, 60% of China's economy is state-run companies and the remaining 40% need political officers. China is just as capable of making shortsighted decisions as the US, and they have already made several devastating ones.

                    While these are hardly shy claims, I don't see anything in them to say "only the West does irresponsible loans"?

                    > The West is in a state of psychosis with Debt and Monopolies under the illusion of free market.

                    > The Chinese markets are more free than West, you can just look at the Auto and AI industry.

                    or the prior post

                    >Usury and debt based economy creates a dynamic where being competitive in production is secondary to financialistion.

                    > In short, instead of market being driven by demand and productivity, it is driven by financier curving out monopolies.

                    > Peak Examples are Uber and AirBnB.

                    You can throw a rock these days and find a category where the products coming out of China are miles ahead of those coming out of the rest of the world, from a bunch of companies nobody had heard of a few years earlier. And the list is growing pretty steadily.

                    I would assume plenty of shortsighted decisions are also being made. But I would have a hard time characterizing the state of competition in the west as healthier or more productive when looking at the number of players and the quality of goods being produced in China.

                  • likeclockwork 3 hours ago
                    state-run corporation are bad but corporate-run state is good?
            • SR2Z 4 hours ago
              ...except Uber STILL faces competition, and I went back to hotels after finding AirBnB too pricy.

              It is good and proper that people aim to create monopolies, as long as they want to do that in a productive and legal way! Monopolies are inherently dangerous, but the truth is that acquiring and maintaining one is not straightforward unless you can get the government to ban your competitors.

              • bigfudge 1 hour ago
                Even if these companies monopoly falters after IPO the disruption and distraction to a focus on producing can be a problem.
            • digitaltrees 3 hours ago
              Expand. I am typically against hard money gold bug libertarian arguments but your description seems interesting and I am open to being persuaded.
        • MarsIronPI 1 hour ago
          Usury (i.e. taking interest) sounds like free market to me. If you don't like my interest rates, borrow somewhere else.
        • gaiagraphia 6 hours ago
          >religious prescriptions against usury.
        • jujube3 4 hours ago
          Graeber was a confabulator with a very loose grasp of the facts, though.
        • UltraSane 6 hours ago
          Without interest why would anyone loan money? Even the Islamic banking alternatives all just hide the interest charges.
          • asdf88990 5 hours ago
            Shares and Goodwill. You loan money for good well or share of an enterprise which comes with benefits and risks.
            • jimbokun 5 hours ago
              So equity instead of debt.
            • wahnfrieden 5 hours ago
              Usury is so delicious to many that it’s unfathomable to consider any other incentive comparing to it
              • UltraSane 5 hours ago
                What is unfathomable is how you have a functioning economy without easy access to loans at reasonable interest rates.
                • asdf88990 5 hours ago
                  The same way Stock Market works. Really, Debt benefits a tiny fraction of people involved in the market.
                • wahnfrieden 4 hours ago
                  Try reading Graeber/Wengrow
          • gowld 4 hours ago
            That's not true. Islamic finance forbids indefinitely growing interest. Sharia finance agreements involve fixed fees or equity shares. Late penalties can be collected but must be donated, not profit. In all cases, the borrower never owes to the lender for the lender to keep more an a fixed amount determined at the strat.
          • za3faran 5 hours ago
            Loaning money as per Islamic Law is a charitable act, not one of exploitation.
            • UltraSane 5 hours ago
              reasonable interest rates aren't exploitation. Business Loans serve a critical role in economic activity by putting free cash to more productive use.
        • vasco 3 hours ago
          You can read Adam Smith if you're looking for definitions, there's no need to read charlatans.
      • thesmtsolver2 5 hours ago
        > what economics told me the free market was all about.

        Don't complain when US starts to play by the same rules China has been using for decades.

        • solid_fuel 5 hours ago
          What is the implication here? Are you warning that US corporations might start doing something shady, like scraping the internet at large scale for training data? Or mass-dowloading pirated copies of books, completely ignoring copyright?

          I find it hard to imagine a future where US corporations have degraded to such a point.

          • digitaltrees 3 hours ago
            Or building backdoor in to the physical servers sold around the world?
          • chaostheory 5 hours ago
            No, he means that the US will close most of its domestic market to competition just like China has for decades, and the US may start subsidizing and dumping its goods everywhere
            • crote 4 hours ago
              > the US may start subsidizing and dumping its goods everywhere

              Isn't that exactly what companies like Uber have already been doing? Take VC money, sell goods & services at a huge loss, wait until the competition goes bankrupt.

              • rednb 4 hours ago
                Exactly, it's funny how most Americans have no self-awareness on this topic.

                And beyond VCs, which are like massive subsidies funded by printed dollars to which no other country has access, even in industries like electric vehicles, Chinese total direct subsidies to their EV companies are like $5bn per year, while the the ones provided by the US to their auto manufacturers are in the range of $50bn per year.

                I don't think the US are cheaters or are doing something bad. But i do think that this propaganda about China flooding the market through "overcapacity" and subsidies is very dishonest and needs to stop.

              • deaux 2 hours ago
                Yes. Dumping abroad is the entire model that Silicon Valley has been built on in the last 2 decades. China just copied the model. And even then it's a light version of it.
            • deaux 2 hours ago
              You know, normally when I read these Reddit comments saying "you made me snort on the bus", I always took them as exaggeration.

              Turns out I was wrong, I just hadn't read something funny enough yet.

              > the US may start subsidizing and dumping its goods everywhere

              This deserves to win HN comment of the year 2026.

              The majority of the NASDAQ market cap is a direct result of the US subsidizing and dumping its goods on the rest of the world en masse.

            • janalsncm 4 hours ago
              Just a data point, but the US currently imposes a 100% tariff on Chinese vehicles.
              • vintermann 2 hours ago
                The "stolen IP" argument can always be made as an excuse. I'm surprised how well it works with some people.
              • chaostheory 3 hours ago
                What’s worse, tariffs or outright banning the competition from your market? China has done both despite globalism being what has lifted it from poverty. Why is everyone suddenly surprised that globalism and free markets are coming to an end? Is this a net good? Mostly no unless you count more redundant supply chains.
            • overfeed 3 hours ago
              The surviving non-American farmers would be confused by the future-speculative tense as America has already been doing this for decades in agriculture, and have been complaining for decades about both the subsidies and dumping of American corn.
              • chaostheory 2 hours ago
                Sure, but not at China’s scale and no where close to number of industries where China does it. Why? The US was a net importer in order to support the dollar being the global reserve.
            • 8note 4 hours ago
              as in, the main trade complaint that trump has with nafta. the Uzs wants to dump subsidized dairy on canadian markets, and canada doesnt want it.

              same with US corn on Mexico and other central american countries, creating all those migrant problems in north america.

              wooo, americans subsidizing and dumping poor quality goods

            • watwut 1 hour ago
              Whole Silicon Valley is based on selling products under price, for years, killing the competition or making it impossible and extracting once monopoly position is stable enough. It is the same play book again and again and again and again. It runs unprofitable companies for absurd lengths of time.
            • echelon 5 hours ago
              > the US may start subsidizing and dumping its goods everywhere

              The US is a net importer, not exporter. It needs to absorb trade at a deficit to encourage the use of the US dollar as the reserve currency.

              We import goods, we settle in surplus dollars. The world runs on those dollars.

              If the US starts dumping on various industries (how is it even primed to do this?), then the world reserve currency status comes into question.

            • DiogenesKynikos 5 hours ago
              Most of the Chinese domestic market is open to foreign competition. The areas that are closed off are those that are politically sensitive: publishing (including social media) and banking.

              As for dumping, Chinese goods generally sell at a markup abroad, which is the opposite of dumping. Chinese tokens cost more abroad. Chinese cars cost several times more in Western markets than in China.

              • fn-mote 3 hours ago
                > Chinese goods generally sell at a markup abroad, which is the opposite of dumping

                Dumping is selling goods below cost.

                Usually because government is subsidizing part of the production. I don’t believe the word “dumping” is used for the similar process when Venture Capital is subsidizing it, but using the same term would make sense.

                Price at home vs abroad does not matter.

                • DiogenesKynikos 2 hours ago
                  Price at home vs. abroad is key. The term dumping comes from the idea that a company that sells profitably in its home market dumps excess production abroad at below cost.

                  This is not what is happening here. Chinese manufacturers are making a large profit off every car they sell in Western markets. As I said above, they're selling these cars at several times the price they charge in China. Unless you believe these cars are being sold at just 30% of cost in China, there's no way Chinese companies are selling below cost in the West.

                • slaw 2 hours ago
                  > Dumping is selling goods below cost.

                  Chinese cars are not sold below cost in Western markets. So it is not dumping.

                • deaux 2 hours ago
                  > I don’t believe the word “dumping” is used for the similar process when Venture Capital is subsidizing it,

                  I've been doing so for years. How about you join me today. I already see two other users doing the same, so there'll be at least 4 of us.

                  It's blatantly dumping, whether the source of the money is directly the government (those in power) or VC (mostly US billionaires (trillionaires?), in other words, those in power) is a trivial implementation detail.

              • crote 4 hours ago
                "Dumping" is when Chinese companies beat Western ones on the free market. If all claims of Chinese government subsidies on basic products were true, China would've gone bankrupt multiple times already.

                You're being beaten by a Chinese company? Why improve your own process when you can just lobby for sanctions and tariffs instead!

                • AuthAuth 3 hours ago
                  Most of the time its just low labour costs and no environmental reg. Its really that simple
                  • gf000 4 minutes ago
                    From a EU perspective similar could be said about the US market - no strict worker protections, lobbying, and a general "capital first" mindset over the users/people (see GDPR etc).
                  • DiogenesKynikos 2 hours ago
                    That does not explain DeepSeek, nor does it explain the car industry.

                    The main advantages the Chinese car industry has right now are: they lead in battery R&D, production is highly automated, they iterate quickly, Chinese work culture is extremely competitive and things get done fast, and the Chinese state has policies to promote EV adoption, so there's a huge domestic market.

                    Note that the last point is different from subsidies to car manufacturers. Cities made it difficult to get license plates for ICE cars. The government encouraged the massive buildout of charging infrastructure. And it used consumer rebates, like California did.

                • noncoml 3 hours ago
                  The US spent decades transferring manufacturing, capital, and know-how to China, while Chinese students trained, and excelled, at elite Western universities. Why are people surprised that China eventually became capable of competing with the US?
                  • testaburger 37 minutes ago
                    https://www.theguardian.com/world/2025/dec/07/hostile-powers... these students?

                    Hostile spy agencies are now as focused on infiltrating western universities and companies as they are on doing so to governments, according to the former head of Canada’s intelligence service.

                    David Vigneault warned that a recent “industrial-scale” attempt by China to steal new technologies showed the need for increased vigilance from academics.

                    “The frontline has moved, from being focused on government information to private sector innovation, research innovation and universities,” he told the Guardian in his first interview since leaving the Canadian Security Intelligence Service (CSIS), which is part of the “Five Eyes” intelligence sharing alliance with the US, UK, Australia and New Zealand.

                    • DiogenesKynikos 7 minutes ago
                      People like Mr. Vigneault know nothing about how academia works. If they get their way, they'll do massive damage to Canada's academic research ecosystem. Academia is naturally open and international.

                      These people don't get that academics publish their research in openly available journals. They go to conferences around the world and tell everyone who will listen exactly what they are working on. Unless you're working in a secretive government weapons lab, there's nothing to hide.

                      In the US, people like Mr. Vigneault instituted a witch hunt against ethnically Chinese researchers, and ended up messing with the lives of all sorts of innocent people, including the director of MIT's mechanical engineering department. They found zero spies. Just a bunch of scientists working normally.

        • _aavaa_ 5 hours ago
          How do you think the major AI companies trained there model? Pirated books and anything that could be torrented and scraped of the web.
          • supah 5 hours ago
            they were being sarcastic
        • thisisit 4 hours ago
          America industries used to play by the same rules. Look up Samuel Slater.
        • potsandpans 5 hours ago
          A credit system that determine your upward mobility?
      • Levitz 22 minutes ago
        >This is great for competition! Chinese vendors offering a cheaper solution = what economics told me the free market was all about.

        Ah yes, systematic fraud and protectionist practices, free market through and through.

      • Mistletoe 6 hours ago
        AI was always going to be a race to the bottom and low margins. It’s why I’m extremely bearish on AI as an investment. It’s framed as some high margin business when it’s really going to end up like your toilet paper at Costco. You will use whatever is cheapest and gets the job done.
        • 4ffsss 6 hours ago
          Correct.

          And the value-add experiences that utilise LLMs require immense imagination et al that folks at Anthropic will not be able to conceive of - given that they have made immense sunk investments in existing assets. This clouds ones thinking immensely.

          Both OAI and Anthropic have tremendous failure risk and this is of course not reflected in the fake private market valuations.

          I see a world where lots of stuff is mass produced in china (tokens) but the acutal goods that deliver the experiences are designed, marketed and sold in the west at much higher prices. of course this a nightmare scenario for anthropic et al.

          • StopTencent 5 hours ago
            You seem to not get how pervasive and evil the Chinese State is at making everything thing shit for citizen world wide. This is one of the reasons.
        • XenophileJKO 5 hours ago
          I used to think this.. but I think my opinion is changing. The reason is that the leaders likely will be able to accelerate faster.

          So what you see is the market "stretching".. the bottom getting cheaper and the top end running away and getting more expensive. At some point the top end may be too valuable to even sell access to.

          • majormajor 4 hours ago
            Most white-collar/knowledge-service-industry work is a weird type of work.

            It's fundamentally about enabling things and largely middleman-type stuff. I have a hard time imaging what "At some point the top end may be too valuable to even sell access to." would even look like? What are you doing with that AI power, and who is paying for the output and why?

            Elon probably isn't gonna spend that much on a model that can generate him ever-better fake porn but does nothing that he can use to sell stuff to other people. Especially in a world where open models are "good enough" for many things like "tell me how to fix the plants in my garden that are dying" and the like. What remains in the narrow knowledge-work space of: can't be done by an individual or small group themselves, but is valuable enough that it would make sense for people to hoard access to these extreme frontier models? Try to recreate Hollywood-as-a-monopoly by becoming the single content producer for everyone's individualized feed and so owning all the advertising budget in the world? Seems hard, we've already seen how easy it is for cheap-and-crappy-but-addictive-or-funny content to disrupt traditional media.

            (There's also pure scientific research, but historically that's not very directly connected to "massive profit" and has a habit of leaking out and getting productized most effectively by other people or just being really easy to copy once someone shows how it's done.)

            Robotics could be a different story, as physical labor can be more inherently productive, but "reasoning" advantages are unlikely to be a big long-term differentiator there. At some point the brick laying robot is satisfactorily building the structure, and you're good.

            A huge amount of the value of "the economy" and the power of a currency is driven by circulation of money, and one thing that all the "bullshit jobs" white-collar/service-industry work does is keep the money moving and ensure that a lot of people have some good-or-services of value to exchange. If you take away the ability to offer services worth exchange from huge chunks of the economy in these super-frontier-models-replace-everything scenarios... you're gonna have a bad time?

          • crote 4 hours ago
            > The reason is that the leaders likely will be able to accelerate faster

            Model improvement is already hitting diminishing returns, and people aren't willing to pay substantially more for a slightly better model. There's no "accelerating away" when the new models don't open up a huge new market. If anything, the companies burning huge amounts of money on marginal improvements will be undercut by companies happy to sell current models at a significantly lower cost.

          • canadiantim 5 hours ago
            Glm 5.2 very much argues against that. Opus 4.8 level quality for cheap. That’s sufficient for most tasks, so if/when you do need SOTA models you can spend more for specific tasks but otherwise rely on the cheap but still plenty good models for everything else
          • _carbyau_ 5 hours ago
            The issue is who is going to pay for access?

            The model has to be sold for cheaper than the value it adds.

            Or your customers will bleed out financially.

            EDIT: rethought entire premise.

      • abc42 4 hours ago
        Free markets work when paired with property laws that can be enforced if broken. If China could offer a cheaper solution in that framework, it would be as you say.
      • janalsncm 4 hours ago
        If you continue studying econ you will learn about the various failure modes of free markets including the free rider problem.

        https://en.wikipedia.org/wiki/Free-rider_problem

        • achierius 4 hours ago
          If you keep studying econ you will learn that these failures are actually the norm, and thus why the only "capitalist" states to really succeed have been the ones where the state was strong enough to reign in the market.

          Of course, such a state of affairs is temporary at best -- since the alternative is so lucrative!

      • AlexCoventry 2 hours ago
        The "free market" gave the PRC its current strategic lock on rare-earth minerals. There's definitely no such thing as a free market in a Maoist dictatorship. I personally think the "free market" concept is an unachievable ideal and thought-terminating cliche, but "free market in a Maoist dictatorship" is for sure a contradiction in terms.
      • toss1 4 hours ago
        Externally subsidized predatory pricing is the opposite of a free market.
        • amanaplanacanal 4 hours ago
          So all those companies selling at a loss to gain market share aren't part of the free market? Like openai, anthropic, and SpaceX?
        • noncoml 3 hours ago
          Cough.. cough.. Uber.. cough cough AirBNB
      • naturalmovement 5 hours ago
        Do you also think Chinese selling counterfeit US postage stamps on eBay for 50% retail price (which is a major problem CBP and USPIS are fighting presently) is the free market at work?

        This post is so delusional and dripping with condescension I've read it three times and I still can't figure out if you're trolling or not.

        • bandrami 5 hours ago
          Postage stamps have specific legal protection from duplication. The output of an LLM is not itself eligible for any legal IP protection.
          • naturalmovement 4 hours ago
            So it's a proxy.

            Do you think you can re-stream cable TV or Netflix to your own paying customers at a cheaper price?

            • bandrami 4 hours ago
              If it's streaming an uncopyrightable product, absolutely. This isn't even a gray area.

              I'm curious why you think you cannot re-stream a public domain stream.

              • naturalmovement 4 hours ago
                You're playing word games to justify something which is clearly ethically wrong.

                You can't re-stream free over-the-air network TV.

                That one company with the datacenter full of TV tuners tried and was sued out of existence.

                • wqaatwt 10 minutes ago
                  Using a bunch of nonsensical/irrelevant analogies to somehow make a point seems worse than these “word games”? What does streaming copyrighted content have to do with LLM outputs (which are public domain)?
                • cycomanic 2 hours ago
                  If I understand your argument it's ethically ok to destill huge swathes of copyrighted work into a model without compensation, but then it is ethically wrong to use that model without compensation (well actually reduced pricing)?

                  I don't get the moral framework that you're applying. Could you elaborate?

                • eloisius 3 hours ago
                  Over the air TV also isn’t public domain. It’s licensed to a station for broadcast. The output of an LLM has been deemed ineligible for copyright. Until you square that pickle your circle isn’t circling.
                • piva00 1 hour ago
                  Why is the ethical line specifically on model distillation for you?

                  Was it ethical for Anthropic/OpenAI to train their models by gobbling a treasure trove of copyrighted material?

                • bandrami 3 hours ago
                  Free over-the-air network TV is (generally) copyrighted.

                  The output of LLMs cannot be copyrighted. This isn't a semantic game; it's literally the case that Anthropic cannot seek relief for people duplicating the output of an LLM.

                  • eloisius 3 hours ago
                    With you, but I suppose they could have a case for circumventing access restrictions under the DMCA aka leet hacking.
                    • wqaatwt 8 minutes ago
                      An endless list of tangential analogies isn’t really a valid argument..

                      DMCA has as little to do with this as streaming copyrighted content

                    • bandrami 3 hours ago
                      The relief available to a licensor for violating a license use restriction is cancellation of the license. And they're free to do that, just like Alibaba is free to pay somebody in Hyderabad $20 to make another one.

                      DMCA can't apply in this case because (this is the "C" in its initialism) it is based on copyright protections, which the output of Claude is not eligible for.

                • noncoml 3 hours ago
                  > clearly ethically wrong

                  Ethics are subjective. That’s why we have courts judge based on the law and not ethics

        • achierius 4 hours ago
          Post offices aren't meant to operate in the free market. More things should be like them.
      • kburman 5 hours ago
        [flagged]
      • skybrian 6 hours ago
        I guess you missed the fraud part.
        • Gigachad 4 hours ago
          Pulling out the worlds smallest violin for this case. It's just unheard of for AI companies to steal things.
        • gaiagraphia 6 hours ago
          >Fraud

          According to which lawyer caste?

          Are American laws absolute truth? If not, who cares?

          • CGamesPlay 4 hours ago
            I mean, which lawyer caste do you respect? Is that one is cool with stealing credit cards to buy Claude subscriptions?

            > 3. At an Italian airport: Constantly stealing bags, opening them to pick out MacBooks and credit cards, a credit card manufacturer-who sells stolen "black" credit card info to transfer stations— is racking his brains to save you money.

            • wqaatwt 6 minutes ago
              Stealing credit cards seems not directed related to using legitimately acquired LLM outputs for whatever legitimate purpose you want to use them.
            • yard2010 3 hours ago
              Where is this quote from?
        • LtWorf 4 hours ago
          Has any tribunal ruled that fraud did happen?
        • techblueberry 6 hours ago
          Fraud is just what losers call disruption.
    • xgstation 7 hours ago
      > This is one reason why Deepseek & GLM are priced so cheaply, they are competing with impossibly low token prices in China. They have to keep prices low, in order for people to use them.

      This one does not make sense to me at all.

      Deepseek and GLM are openweights, even US inference provider are selling them at much cheaper price. The price is cheap because the model is more efficient.

      • tristanj 7 hours ago
        DeepSeek permanently cut its V4-pro API prices by 75% because they were too expensive. Without the price cut, Deepseek V4-pro tokens would have cost more than resold Opus 4.8 tokens.

        Opus 4.8 is a more capable model, so almost nobody was going to pay for V4-pro at the original price.

        • ssivark 5 hours ago
          > Without the price cut, Deepseek V4-pro tokens would have cost more than resold Opus 4.8 tokens.

          You mean it's functionally as if American tokens are being price dumped in China and Chinese model providers are being forced to compete with that and innovate? So many delicious layers of irony, lol :-P

        • ammo1662 6 hours ago
          China also have trust issue with American companies. Most of State-owned companies will not use those services even if they can directly access them.
          • nekusar 6 hours ago
            And? The US feds wont allow even local Qwen or Deepseek models either. "Evul godless commies" or some such nonsense.
        • ValentineC 5 hours ago
          If other providers can match Deepseek's first party prices, that probably means that the economics for running inferencing work out for them.
        • ffsm8 5 hours ago
          Urm, no? I man they did cut prices by 75% that part is true - but they reduced a starting price that was below sonnet.

          Also it's a open weight model, doing that is impossible long term because the real price will be set by the other model providers, who priced it around 60% of sonnet inference cost. Had to look that up though, so that's today's pricing.

          • furyofantares 4 hours ago
            Is there a contradiction here? If resold Opus tokens are sold at a 93% discount, you can be a lot cheaper than Sonnet while also a lot more expensive than resold Opus tokens.
            • ffsm8 1 hour ago
              I see, After rereading the comment I was responding to I realized I probably misread/misinterpreted what they wanted to convey.

              I think there isn't a contradiction and I was just confused. The price may have been discounted only to get below the price point of opus resellers. I do not have enough information on that to make any clear determination on that topic.

      • i2km 49 minutes ago
        It's somewhat difficult to have any sympathy for Anthropic here. They're entirely responsible for selling tokens at below cost, with the age-old bait-and-switch tactic.

        If they weren't doing so, then these Chinese resellers wouldn't be viable. Radical idea, but how about they actually charge a viable price, even on subscription plans?

      • jadar 6 hours ago
        If resold Anthropic tokens undercut even the at-cost open-weight model tokens, because they're reselling subsidized subscription tokens, then you'd have to start selling open-weight model tokens at a loss in order to match them.
    • gruez 7 hours ago
      >They achieve this by reselling capacity from pooled Claude Max 5x accounts, payments fraud, and also reselling the model output to various Chinese labs.

      >Here's one token reseller, they're offering Opus 4.8 for a 93% discount below official API rates: https://yunwu.ai/pricing?keyword=claude

      But is it cheaper than getting your own account? Otherwise this sounds like the "anthropic/openai are losing gazillions of dollars because they're selling $1k worth of tokens for $100" line that's commonly trotted out by AI bears.

      • tristanj 7 hours ago
        It's very difficult for people to create personal Anthropic accounts from China. Anthropic blocks Chinese bank cards, so people must pay with a foreign bank card, which they likely don't have. And even if they manage to set one up, they have to access it via VPN, which eventually gets the account flagged. They then have to complete identity verification, which most Chinese users are unable to pass.

        There's a similar Claude resale market going on in Russia. On Funpay they are selling Claude tokens for roughly 20-30x cheaper than official Anthropic API pricing.

        • jiggunjer 6 hours ago
          And phone number verification too? So that's 3 hurdles to jump to just get opus.
          • cute_boi 6 hours ago
            for verification you can buy phone number for $1 easily.
            • LoganDark 3 hours ago
              Doesn't ~every phone number verification service check the telephone provider and only allow from a select whitelist of residential providers?
      • spindump8930 7 hours ago
        > Claude and ChatGPT are both blocked in China

        So it's presumably cheaper than attempting to spin up your own method of circumventing the blocks.

      • weird-eye-issue 7 hours ago
        You can use it as an API unlike the subscription.
      • mlmonkey 6 hours ago
        Maybe these resellers are using stolen American credit card numbers? Reselling Claude access seems to be a nice way to launder the money.
    • petesergeant 3 minutes ago
      > payments fraud

      One of these things is not like the others... If Anthropic could show that Chinese commercial competitors were using payments fraud to do this, they would be shouting it from the rooftops.

    • yokisan 5 hours ago
      One would think Anthropic could point Mythos at this to solve the reseller problem outright:

      - Purchase multiple accounts via resellers

      - Send messages that contain a UID

      - Capture these in Anthropic's logs

      - Shut down account. Use any metadata to identify related accounts

      /loop

      • killingtime74 4 hours ago
        Maybe Fable is not as capable as thought?

        On the one hand they talk it up as world ending and on the other hand they can't manage bot accounts on their own service.

        I want to hear how this can be rationalised.

        From the article "every layer of control frontier US AI companies have added (geoblocking, phone verification, credit card requirements, and now live biometric KYC checks) has produced a corresponding layer of evasion infrastructure".

        • suzzer99 2 hours ago
          No system is foolproof. They'd have to be willing to throw out some % of good customers along with the bots. Amazon can do that because they have a monopoly already. Anthropic can't risk it when they're trying to grab market share.
          • killingtime74 2 hours ago
            In this case, being distilled is sort of existential to them. The false positives would just be losing some revenue (depending if profitable, not even losing profit).
      • lysium 2 hours ago
        This only shuts down the account you have bought in the first, plus a few others if it is shared.

        > Use any metadata to identify related accounts

        How does that work? I think this is the most important part to have an impact on the „thousand“ bot accounts.

        • csomar 17 minutes ago
          They probably will route you through different accounts. So with a single account you should be able to hit hundreds-thousands of accounts.
      • NetOpWibby 5 hours ago
        They could be doing this internally and want to see if they can downright eliminate these loopholes before bringing Fable back.

        I don't care how they do it, I just want to use Fable again.

      • akersten 5 hours ago
        This, just like blanking out a football stream for a split second to binary search and find IPTV rebroadcasters, is far too good a solution. Suits prefer to make it seem like their job of fighting "misuse" is hard, justify their budget, continued existence of the trust & safety department, face scans, etc.
    • ycui7 3 hours ago
      Those resellers are simply just selling Kimi K2.5 or GLM5.1 as counterfeit Opus. We, Chinese, know how to play the counterfeit game for a long time in so many industry.
      • osti 2 hours ago
        That's not true, some of them are indeed fake, but a lot of them are actually providing real opus at low cost doing what op said.
        • petesergeant 2 minutes ago
          Genuinely, can you provide a better source here than "trust me bro"?
    • HeavenFox 6 hours ago
      Also just plain old fraud: selling Chinese models as Opus. With the capabilities of Chinese models catching up fast, this is getting more and more difficult to detect.
    • mellosouls 54 minutes ago
      Interesting article - your discussion from the time:

      https://news.ycombinator.com/item?id=48165492

    • abofh 5 hours ago
      Somebody figured out how to make the trial profitable!

      I don't really feel bad about anyone here, they were subsidizing to get people hooked, someone turned the subsidies into profit when they got selective pricing mode enabled, it was always going to be arbitrage.

      But the winner is the guy in the middle in a jurisdiction that will likely be judgement proof, because everything they capture, both input and out, and if available, thinking tokens -- are gonna be for sale as soon as you cut off their other revenue.

      Zero knowledge was a commitment Anthropic took seriously, until it got inconvenient.

      So, people reselling their leftover plan crumbs? Probably a bad idea for a lot of reasons, but it's civil, and I wish Anthropics lawyers actually closing Streisand's LLM

      • peyton 5 hours ago
        I don’t follow your reasoning. It is foreign to me. You talk about winners, but this is clearly fraud.
        • akersten 5 hours ago
          Fraud?

          Anthropic sells some undisclosed and ever-changing number of tokens for $200, the customer uses those tokens. If there's any fraud here, it's that the $200 next month is silently worth fewer tokens than the last.

    • eru 1 hour ago
      > This is one reason why DeepSeek & GLM are priced so cheaply, they are competing with impossibly low token prices in China. They have to keep prices low, in order for people to use them.

      Sounds a bit circular? Aren't the companies working on these models than also the ones that are paying the subsidy (via paying for training data)?

    • arkh 1 hour ago
      It's fucking laughable to see people complain about what they did and still do. Using illicitly extracted data? That's all main LLM playbook. Onslaught of bots? Ask where the bots almost DOSing most internet sites for the last couple years come from.

      As some people would say: Cheh

    • ilangge 36 minutes ago
      This may be the truth behind the alleged distillation incident.
    • nonethewiser 7 hours ago
      Thats pretty crazy. This kind of thing jeopardizes Claude Max.
      • avaer 7 hours ago
        If Anthropic is selling a dollar for less than a dollar, they are running a business that doesn't make sense. That's what jeopardizes Claude Max, not this.
        • wqaatwt 0 minutes ago
          We really don’t know what are Anthropic’s margins on inference. Most available data indicates they are quite high on the API so it’s not that obvious that subscriptions are unprofitable.
        • ralph84 7 hours ago
          Almost all consumer services have a built-in level of breakage that make them profitable. Mobile providers certainly wouldn't be able to offer unlimited calling if everyone was actually on the phone 24x7.
          • margalabargala 7 hours ago
            Sure they would. Do you know how little bandwidth a phone call takes?

            A voLTE call is like 40kbps. For every person on earth to be on the phone to another person would be 4 billion calls would be about 160tbps. Which is less than 10% of the Internet's capacity.

            • ralph84 6 hours ago
              Terminating a PSTN call requires a lot of control plane infrastructure beyond just raw bandwidth. Especially mobile where you need to keep track of devices physically in motion. Could a system to support 4 billion simultaneous calls be built, sure. But current PSTN systems are nowhere near sized for it.
              • noncoml 3 hours ago
                When was the last time you place or received a call to/from PSTN?
          • cr125rider 6 hours ago
            The over subscribed gym model!
        • gruez 7 hours ago
          But if it's intended to be used by one person, it seems like breaking the contract by sublicensing it out to dozens of other people. It's like buying a netflix subscription for $15, then sublicensing it on a per-hour basis to dozens of other people.
          • TurdF3rguson 6 hours ago
            There's still per-window and weekly limits though, so it's not really like that.
            • gruez 6 hours ago
              Office 365 is licensed per seat/account, but each account has a 5 device limit. Do you think it's fair game for an enterprising person to sub license each account to 5 people, 1 device each?
              • TurdF3rguson 5 hours ago
                I wouldn't do it personally for the same reason I wouldn't share my toothbrush with 5 people.
          • wslh 6 hours ago
            You can write whatever contract you like, the problem is how to enforce it, and a greater problem is enforcing it around the world.
        • walrus01 7 hours ago
          Plenty of things are intentionally run at a loss (for years!) to gain market share and quantity of ongoing recurring users, or with expectation of ROI later on. Multiple generations of the Xbox hardware have been sold at a loss with the expectation that customers will purchase 300, 400, 500 dollars worth of games, which are very high margin, over the lifespan they own the system.
          • avaer 7 hours ago
            I get that. It works as long as nobody calls out the emperor for having no clothes.

            It's similar to fractional banking, you gamble that people won't want their deposits all at once and pray for you're big enough for bailouts when they do.

            It's still a business whose fundamentals don't make sense, you're just gambling you won't get found out.

            • mrandish 6 hours ago
              > you're just gambling you won't get found out.

              It's not so much keeping it secret as counting on no one finding a way to harvest the subsidized value at scale. There's an example of that occurring in game consoles with the Playstation 3. Sony's little-used OtherOS feature allowed Linux to be installed on the PS3 and the Cell processors were quite a good deal for scale compute. So the U.S. Air Force Research Laboratory bought ~1800 PS3s and ganged them together in a datacenter as a supercomputer called Condor.

              At >500 TFLOPs it was the 33rd fastest supercomputer in the world. Of course, Sony pushed a firmware update that removed the OtherOS feature entirely.

            • cr125rider 6 hours ago
              Oh they know what they’re doing. They’re playing the long war of attrition game. Subsidize your product to undercut your competition until they go out of business. Tale as old as time.
            • mmooss 6 hours ago
              > It works as long as nobody calls out the emperor for having no clothes.

              Why would customers knowing that the vendor prices goods/services at a loss cause those strategies to fail? Customers often know. Most know about razors and blades; many/most know Lyft/Uber operated at a loss to gain market share. etc.

            • ttft 5 hours ago
              Another post on fractional banking hahahaha.

              I suggest you go learn how money is created in the modern economy.

              I mean most of you should stop talking about anything finance related until you learn this stuff properly.

          • rileymat2 5 hours ago
            In international trade, isn’t this called dumping which gets major political pushback?
        • mullingitover 5 hours ago
          [dead]
      • lovich 4 hours ago
        That is pretty crazy, almost like how Claude and all the other models are jeopardizing other businesses without paying for their training data and wiping their ass with robots.txt
    • maxloh 3 hours ago
      > They achieve this by reselling capacity from pooled Claude Max accounts, payments fraud, and also reselling the model output & reasoning chains to various Chinese labs.

      Claude never provides the raw reasoning chain. What you see is just a summary of that reasoning. Getting the full thinking output requires an enterprise agreement.

      https://patrickmccanna.net/the-text-in-claude-codes-extended...

      • tancop 3 hours ago
        how hard is it to find a manager or ops team member at one of the enterprise companies and buy lets say 100gb of logs? the chinese lab can promise to anonymize the data before training, not release it raw and pay a good price.

        honestly you might just need to get data from a couple long sessions and feed it back to another model as an example to make synthetic reasoning chains. if the emulator model is good enough it should work.

        • dgellow 37 minutes ago
          I would expect that to be very hard
    • nicce 1 hour ago
      > These resellers operate tens of thousands of bot accounts, which is also why Anthropic introduced identity verification, to slow down the onslaught of bots.

      Don’t put that on Chinese.

    • operatingthetan 6 hours ago
      This story reads like a William Gibson novel. Wild times.
    • fwipsy 7 hours ago
      Hm! In this context, introducing ID verification may have been a significant silver lining to the order to take down Fable for Anthropic.

      This also sheds a very different light on people saying that competitive open-source models are undermining frontier labs' business model.

    • irlib 5 hours ago
      Where are you getting cheap GLM5.2? It is about 1/3 the price of Opus, which is not what I would call cheap.
    • Lio 4 hours ago
      I’m surprised that instead of cutting them off Anthropic doesn’t just switch them to a lower quality, cheaper to models.

      That would seem more effective than simply shutting down the accounts.

      Keep them paying for junk.

      • eloisius 3 hours ago
        That sounds like it would actually be fraud.
        • LoganDark 3 hours ago
          Not if you simply say in the terms of service that it's allowed. Then suddenly it's normal (every company does this). Similarly to how the terms of service can simply say you're not allowed to sue.
    • bg24 3 hours ago
      Great point, and this is on the vendor (Anthropic) to address. Typical fraud issue.

      OP is about modeling distilling the capabilities.

    • avsteele 6 hours ago
      What does this have to do with Alibaba? Are you saying Alibaba is the reseller?

      If not it sounds like you are describing a separate phenomenon.

      • lokar 6 hours ago
        They buy the logs from the bot farmers
        • maxnevermind 5 hours ago
          Are logs somehow used for the purpose of training their own models or something else?
          • floam 5 hours ago
            Distillation from having enough logs
    • temporaryacc2 4 hours ago
      Thank you for your very informative comment!

      (It's a shame almost all replies are just the same contrived pessisism found on every Anthropic thread on HN).

      • eloisius 3 hours ago
        Indeed! It’s so hard to find reasonable takes on AI that aren’t littered with accounts created 11 days ago that only post in threads related to Anthropic for some reason
    • rconti 6 hours ago
      Wait, so is your theory mutually exclusive to Anthropic's claims of "theft of capabilities"?
      • Chu4eeno 6 hours ago
        No, this reseller 中转站 thing is basically a loss leader for certain chinese ai labs to distill claude with verified human input.
      • bandrami 3 hours ago
        No, it's part of the capability theft. They resell Claude tokens cheaply and then simultaneously log everything for distillation. Even if they take a small loss on the token sales it's much cheaper than the equivalent compute.
      • tristanj 5 hours ago
        Not really. I think Anthropic focuses on identifiable distillation attacks rather than the (even larger) industrial-scale token harvesting and reselling operation, because they don’t want people to know how easy it is to get cheap Claude tokens.

        Once people realize they can access Anthropic models at a 90% discount, they won’t want to pay full API prices anymore.

    • alliao 3 hours ago
      don't buy your drugs from shady operators children! always get it from the source
    • overfeed 4 hours ago
      > which is also why Anthropic introduced identity verification, to slow down the onslaught of bots.

      Lol. The irony is thick for anyone who ever had to attempt defense against an onslaught of American AI lab crawlers that ignore robots.txt

      • a34729t 3 hours ago
        Yeah nobody is gonna be shedding any tears for them
    • golergka 6 hours ago
      Needless to say, they also collect all the data and sell it to labs which want to distill the models they’re serving.
    • epsteingpt 7 hours ago
      How are they 'streaming' the responses and 'pooling' the tokens?

      Do they have MacBooks in the US that run the queries and stream the outputs back to China?

      • paxys 7 hours ago
        Why do you need macbooks? Just rent servers from any hosting provider.
        • walrus01 7 hours ago
          Not going to work for very long or at any scale coming from datacenter/hosting provider IPs. Google "residential proxies for sale" for the tip of an iceberg of how they snowshoe the traffic.
          • dannyw 5 hours ago
            I use my Codex and Claude Code subs on like 4-6 different servers, ranging from AWS to Vultr to Linode etc.

            That’s a major and legitimate use case for developers, Anthropic can’t just block data center/hosting IPs because their actual customers use them on data center/hosting IPs.

            • walrus01 3 hours ago
              Now consider what will happen if your pattern of queries and context history triggers a pattern that makes it obvious it's some API key being used by multiple different entirely unrelated people on totally different things, or any other pattern of use that makes it obvious it's being used for distillation.
              • dannyw 3 hours ago
                Two parts here.

                First, well-calibrated systems for detecting API compromise is a good thing (or good intent at least). Credential malware is exploding.

                Second, the challenge is that significant amount of genuine work — such as evals — seems practically impossible to distinguish from generating RLAIF outputs.

          • paxys 7 hours ago
            As long as you stick to a single unique IP per account it isn't going to get flagged.
            • walrus01 7 hours ago
              Respectfully, no, that's not how it works. You think the people running anti-fraud and anti-bot measures don't have tools that know the specific ipv4 and ipv6 CIDR ranges of every ASN that they categorize as hosting/colo providers?

              And that's just as a basic first effort reject measure to prevent automation tools from using things designed for human-interactive use only.

              Go try to do many of these things from Cogent IP space and see how long your project lasts.

              • paxys 6 hours ago
                Every developer at my company uses their Claude Code subscription on an EC2 dev box. Plenty of other tech companies do the same. Heck nowadays people even install Claude Code directly on production servers in data centers and use it as an ops tool. None of this is a problem. Fraud and abuse detection is a lot more sophisticated than just checking an IP range.
              • fc417fc802 5 hours ago
                None of the LLM providers block professional use thus they must necessarily permit access from commercial IP ranges.

                I have no idea how the resellers are doing it but an obvious starting point would be a cheap VPS node that routed each account to a unique semi-permanent IPv4 or IPv6/64. All the provider would see would be a regular account making a normal looking stream of requests from a stable datacenter IP address. Any given request stream would remain consistent (at least over a period of a few hours) because a reseller would take care not to split the session of a single user across multiple different accounts and not to interleave the active sessions of multiple users on a single account.

                Detecting this would be extremely difficult because on a longer time frame it's perfectly normal for many distinct accounts to work on the same code base.

                • dannyw 5 hours ago
                  And it’s perfectly normal to be running Claude Code on EC2, a VPS, etc. I do it all the time!

                  You block clouds, you block devboxes and your customers.

              • hanakuso 6 hours ago
                Wouldn’t it be funny if the same residential proxies allowing these labs to scrape the Internet is also what’s enabling these resellers?
                • fc417fc802 5 hours ago
                  If we're getting up to the scale of these resellers and also considering chinese state interests then we're well into the range of purchasing a few small ISPs in different countries and "padding" the legitimate subscribers.
              • awakeasleep 6 hours ago
                Sorry for being a newb here but are you saying Anthropic blocks people from running claude code on datacenter ip ranges?

                Or is the datacenter IP just one part of the picture?

              • Chu4eeno 6 hours ago
                I assume they use residential proxies (tunneling in the background of crappy Android games) for the "last" hop.
              • elwebmaster 6 hours ago
                Nonsense. Many if not all legit Claude users are using Claude Code inside their Cloud servers. How else would you use it anyway? For just local dev? That's so 2000 and late bro.
                • walrus01 5 hours ago
                  No, I'm not saying it's the exclusive and only measure (that would indeed be something we might see 20, 25 years ago), it's one of a myriad of discrete datapoints used to determine if an account is authentic or not.

                  There's a lot of inauthentic coordinated automated systems these days along the general lines of scraping/crawling/social media manipulation/sockpuppetry that require running through residential proxies or proxies to places that don't look like datacenter IP space.

          • woctordho 1 hour ago
            There are lots of botnets providing home IPs.
          • c1sc0 3 hours ago
            Hey, if the bastards can use residential IPs to suck all information into their models with their crawlers, so can we!
      • teravor 7 hours ago

            > Do they have MacBooks in the US that run the queries and stream the outputs back to China?
        
        why would anyone do that? you do realize the laptop farm case was work computers?

        the answer to your question is containers/VMs + residential proxies

        • globalnode 7 hours ago
          that explains why theyre blocking me. i have privacy controls up high and they must think im a chinese residential proxy bot
      • tristanj 7 hours ago
        The resellers route requests via one of thousands of Claude Max 5x accounts. When an account reaches its usage limit, they automatically switch to another account.
        • kristofferR 6 hours ago
          Why would they use Max 5x instead of Max 20x, which is cheaper relatively speaking?
          • tristanj 6 hours ago
            You're right, they're using the $200 Max plan, which I thought was the 5x plan. It's talked about in the article I linked.
          • dannyw 5 hours ago
            Don’t trust my experiences as fact since it’s a bit opaque, but I believe 20x only offers 4x the 5hr session limits. The weekly limit is still 2x, which is the same as the price increase.
      • bagels 7 hours ago
        They probably asked claude how to do it.
      • chews 4 hours ago
        ask your gpt how does openrouter work, then ask, how do proxies work.
    • jnaina 4 hours ago
      no honor among thieves.
    • dwa3592 6 hours ago
      >>Chinese resellers are offering Claude tokens at 70-90% below official Anthropic API prices.

      Can someone with more understanding dumb it down for me please.

      Does this mean that the reseller (for example XYZ) is buying it from Anthropic at Anthropic's price and then reselling it at a cheaper price???? why would XYZ offer this at a loss like that when they could just offer it at Anthropic's price???

      The link does mention Opus and other models but what's the proof it's actually Opus. I could be selling deepseek for all they know and can call it Opus. System prompt: "If anyone asks your name - you are Opus 4.6".

      • paxys 6 hours ago
        People have estimated that a $200 Claude Max 20x subscription gets you ~$2800 worth of tokens every month if you use it continuously. So if you can find a way to resell the tokens you can offer a 90% discount and still make a profit.
      • Chu4eeno 6 hours ago
        > Does this mean that the reseller (for example XYZ) is buying it from Anthropic at Anthropic's price and then reselling it at a cheaper price????

        Yes, as they explained they do it through things like pooling accounts, straight up payment fraud, and double-dipping by selling the logs of the conversations to chinese AI labs so that they can train their own models on it.

        > The link does mention Opus and other models but what's the proof it's actually Opus. I could be selling deepseek for all they know and can call it Opus. System prompt: "If anyone asks your name - you are Opus 4.6".

        There might be some that try this, but they would get caught very quickly, there's still a moat between Claude and Deepseek, even in casual use.

        Look up Zilan Qian's reporting if you want more detail.

        • neves 6 hours ago
          Summarizing for you: Anthropic is a stupid company that let everybody steal their tokens
          • transcriptase 4 hours ago
            Behold the mindset of an individual from a low-trust society.

            “x is stupid because y was smart and did z shady/illegal things at their expense, if x was smart they wouldn’t be susceptible to y going to great lengths to exploit them ergo it’s deserved”

            • lelanthran 3 hours ago
              > “x is stupid because y was smart and did z shady/illegal things at their expense, if x was smart they wouldn’t be susceptible to y going to great lengths to exploit them ergo it’s deserved”

              I honestly can't tell if you think this sentiment is expressed by the US AI companies or the Chinese AI companies.

              This gives off "The last line of Orwell's Animal Farm" vibes.

          • Chu4eeno 6 hours ago
            Not really sure what else they can do, between people running residential proxies (embedded in cheap games or for a tiny sum of crypto) on their phones at home, making the source of the traffic indistinguishable from legitimate traffic, to ID verification check completion as a service in low-income countries, there isn't much they can do to block it.
            • rileymat2 5 hours ago
              They could run their service at a profit?
              • recursive 5 hours ago
                No customers at that price point though.
                • simoncion 4 hours ago
                  > No customers at that price point though.

                  Oh, no!

                  Anyway.

      • hoten 6 hours ago
        Because Anthropic's subscriptions come with X amount of tokens / week, and divided by the subscription cost it is WAY less than what they charge per-token (the "API price") beyond that.

        So these resellers get a ton of accounts on subscriptions and sell the cheaper tokens.

      • VladVladikoff 6 hours ago
        They probably buy the plans instead of the API tokens, and resell access via a custom API that routes to the plans. So you presumably get cheaper access this way than paying API pricing.
      • neves 6 hours ago
        It makes no sense.

        These China e bashing is very annoying. It is hard to argue with people drowned in American propaganda. I'd expect better arguments from the intelligent people in HN

    • blitzar 2 hours ago
      > Chinese resellers are offering Claude tokens at 70-90% below official Anthropic API prices

      How dare they. Only Anthropic is allowed to sell its tokens at 70-90% below the API prices.

    • tamimio 5 hours ago
      Im ok with this! Is there a site that list all these resellers, or better, a openrouter-like for these resellers?
      • tristanj 5 hours ago
        They're called 中转站 (transfer stations/proxies). They can be a bit tricky to find on your own, so I'd suggest asking your preferred AI to search in Mandarin for you. I linked a larger operator in the parent comment, or have a look at https://hvoy.ai/ which lists a ton. You can also find many on Funpay, which may be easier to use.

        This is one seller I found, they're reselling "real Max 20x subscription accounts", at ~97% below official API prices https://funpay.com/en/lots/offer?id=70812310

        Note that whoever you buy from will be able to read all your tokens, so don’t use it for anything confidential/financial.

        • ValentineC 5 hours ago
          > They can be a bit tricky to find on your own, so I'd suggest asking your preferred AI to search in Mandarin for you.

          Random, but are the frontier AI providers like ChatGPT better at searching the Chinese internet now?

          When I was in China a few months ago and asking AI for restaurant recommendations, all the US frontier providers were pretty useless, or plain out hallucinating, even if I specifically ask them to search Dianping (Yelp for China).

          • tristanj 4 hours ago
            I'm not sure. I use Grok for most of my esoteric searches and it does quite well. I explicitly prompt it to search in the language most relevant to that query, and found it does quite well. I also tell it to respond back in English. Often, there is not enough information available in English about nice regional topics.

            I know ChatGPT had an issue where it only tried to search in English (unless prompted) and the answers were not great.

    • areoform 5 hours ago
      Identity verification won't work. Nothing will. They are paying (and will continue to pay) US citizens sitting at home to copy-paste / type prompts out if they have to. But eventually they won't have to.

      Once there are enough spam PRs on github / uploads of claude conversations, enough mythos output used in production etc.; it'll just be the same albeit delayed. Doesn't matter either way.

      I feel for Anthropic's team and I understand where they're coming from, but once you reason it out, you'll come to the conclusion that this war is an exercise in futility.

      Unlike prior systems - like Google's algorithm; these models aren't entities that use math in the process of doing X or Y (information retrieval from such and such infrastructure) -- they are the math. More precisely they're mathematical functions. Very very complex functions. Almost certainly impossible to write out without filling up a library functions. But they're mathematical functions nonetheless.

      So when your text is processed, then Mythos / Opus etc at their core compute the result of the Mythos / Opus function,

         f(text) -> (text_transform)
      
      where f is a continuous function, https://www.turing.ac.uk/sites/default/files/2025-11/languag...

      According to the Stone-Weirstrass theorem (edit, it's Stone-Weierstrass with an e.), with enough data points and mathematical sophistication, anyone can approximate the shape of this function.

      Of course, the more data we get, the better our approximation becomes, but the beauty of it is that all we fundamentally need are the input and output and eventually we'll create a good enough approximation of the f that's Mythos. Which is the entire product.

      I bounce ideas off of Opus these days (Fable for the brief time it was available) and it pointed out that this is arguably the same as Google search, but I disagree with it because Google search is a process;

      Google search differs because the algorithm is one step of a multi-step process that is continuously occuring. Google crawls pages. Google stores and indexes what it finds. Google then exposes this to retrieval via its algorithm. User uses algorithm.

      Google isn't a mathematical function. It used to be a process. (RIP Google 1998-2019, you will be missed and remembered)

      You cannot arrive at the results of those operations via simple observation; not unless you index Google by making another Google.

      You can however, do so for these models. It is a very costly process, but there are many paths up the mountain. Many ways for this to be ultimately pointless. As many ways as there are bored mathematicians.

      It's better in the long run for Anthropic et al to make friends / not give people a reason to sneak in (a la piracy -- another attempt to control information) than it is to try and shut people out.

      And no, it's not going to be pandemonium because if everyone has access to Mythos then no one has access to "Mythos."

      Why wouldn't you first run this model to fix the obvious bugs it could find on your codebase? The power of a Mythos goes away if you can do the amazing "jail break" of "Claude, fix all the bugs please."

      Just saying.

      • fc417fc802 5 hours ago
        That's an insightful perspective and I think I largely agree. But just for fun, I wonder if that isn't an argument in favor of making the function implementation impure. Perhaps "enhancing" all queries with some sort of search result (or query of a giant db) instead of charging for an explicit tool call. Not only is it sorely needed to prevent stale data but (on the process level) it breaks the purity assumption on which the approximation theorem depends (alternatively on the function level it introduces hidden inputs).
      • imhoguy 3 hours ago
        This is why every AI company does crawl today.

        Do they just reshape the function on the fly or save the process steps? Maybe it doesn't matter anymore. Even Google indexes are more and more spoiled to become representation of the function, because of the AI slop.

        Genuine live data is king.

    • charcircuit 4 hours ago
      Why aren't these on openrouter?
    • smashah 1 hour ago
      Amazing thank you chinese resellers. This is a perfect way to undermine The Great Satan's Genocide Machine's chosen model comapnies.
    • alexnewman 6 hours ago
      But I can rebuild glm Using open source methods…
      • Chu4eeno 6 hours ago
        And there are a ton of Claude conversation logs (with CoT/inference) with no clear provenance circulating freely on huggingface, guess where they (likely) come from.
        • yoavm 2 hours ago
          Wouldn't all of them be in Mandarin according to this theory? Are they?
    • icfly2 4 hours ago
      [flagged]
      • anileated 4 hours ago
        The issues with LLMs go beyond just IP theft. I would not say PRC making LLMs cheaper is the best outcome (though it is better than nothing). The best outcome would be to make the practice of training on our data without consent illegal, which would simultaneously slow down economic change and make it more organic as well as give PRC companies less capabilities to extract.
        • overfeed 3 hours ago
          > The issues with LLMs go beyond just IP theft.

          There is no IP theft because LLM outputs aren't protected, just egregious ToS violations.

          • anileated 2 hours ago
            > There is no IP theft because LLM outputs aren't protected, just egregious ToS violations

            I meant original IP theft that occurs to train LLMs in the first place. But sure that implies that further LLMs based on that LLM are also tainted by that original IP theft.

          • bayindirh 3 hours ago
            - Deriving a “no derivatives” licensed item is illegal, no?

            - Selling a “no commercial” licensed item is illegal, no?

            - Deriving and/or reproducing MIT licensed code without credit is illegal, no?

            - Reproducing and/or deriving GPL code and not notifying and/or not making GPL is illegal, no?

            • overfeed 2 hours ago
              I can't make heads or tails of your opinion-free comment, made up of only questions.

              My best guess is you're suggesting that Anthropic's model outputs are transitively under copyright (as a reproductions of human work under copyright?), but somehow ownership now belongs to Anthropic and not the original owners, and therefore Anthropic has standing against Alibaba? Not only does this go against what Anthropic argued in court against authors and publishers, such jurisprudence would lead to the immediate shutdown all leading LLMs in the US which were all trained on stolen work.

              • anileated 2 hours ago
                > immediate shutdown all leading LLMs in the US

                They can license training data. They have trillions, look what they are dumping into it, you seriously think they can't afford to license data.

                Obviously it would be easier if they do it from the start, but that was their trick, to do it while people don't notice and get big ASAP. Should they get away with it?

                Also, it would solve their Chinese problem, because it would make them violate copyright too. Right now it's more like rules for thee not for me so it's hard to take seriously.

      • 8note 4 hours ago
        i still want those data sets to become public domain. open weights still isnt good enough
        • bendews 4 hours ago
          That's the conundrum isn't it? Anyone that posts their datasets would be immediately sued/blocked/boycotted to oblivion due to the obvious and blatant data theft, not to mention IP and copyright issues.
          • timschmidt 4 hours ago
            Nvidia's even being sued for providing scripts which automate the downloading of said data from non-Nvidia sources. We certainly don't need copyrights that last nearly a century after the author's death (they literally cannot help the author), so here's hoping that some of the disputes over all this money changing hands can reign in some of the existing copyright sprawl. A stronger public domain would provide more useful training data for everyone, including open source models, and make criminals out of fewer AI researchers.
      • anukin 3 hours ago
        I hope you say the same when these cheap llms are used in drones to target humans. The world models are exactly built with that direction in mind.
        • rekttrader 3 hours ago
          Cool beans boomer alarmist stance. The Chinese models here are doing what they’re supposed to price the market accordingly.
      • throwccp 4 hours ago
        [dead]
  • AdieuToLogic 6 hours ago
    The hypocrisy of Anthropic complaining about "illicitly extracting its Claude AI model capabilities" and supporting the White House's accusation of China "stealing U.S. AI labs' intellectual property on an industrial scale" is hilarious.

    Anthropic, OpenAI, Google, Microsoft, et al trained their models by ignoring the rights of copyright holders when harvesting whatever content they could. Now one of them is crying foul for another entity doing exactly what they all did?

    Hilarious.

    • protimewaster 6 hours ago
      The AI companies seem to take the viewpoint that everything on the internet is free, except their stuff. It's okay to hammer some random website with AI crawlers, ignoring robots.txt, and causing bandwidth costs to skyrocket. But if you cost an AI provider money with your data acquisition practices, well, that's just clearly unacceptable.
      • eunos 11 minutes ago
        Anthropic, Dario especially seems have eternal grudge against China as a concept, that remind me of Thiel.
      • xdennis 4 hours ago
        That's one aspect, which is a bit of a gray zone. But Anthropic trained on pirated books. That is explicitly illegal.
        • ares623 1 hour ago
          I'd love to see an open-source project that's basically a Torrent client for downloading pirated material, but it trains an AI model "in the background" using the downloaded content. That way everyone can claim fair use for possessing copyrighted material, I mean there's precedent right?
      • AdieuToLogic 5 hours ago
        > But if you cost an AI provider money with your data acquisition practices, well, that's just clearly unacceptable.

        It's the same question libertarian advocates cannot resolve:

          If one truly believes in personal sovereignty, how are
          shared resources paid for, such as roads, power grids,
          potable water, sewage services, fire departments,
          and police departments?
        
        It is also not a coincidence that leadership in many tech companies have expressed libertarian ideals.
        • slopinthebag 2 hours ago
          What do you mean by "libertarian advocates cannot resolve"? Like, they have no answers at all, or you aren't personally swayed by them? Because they definitely have answers to this question...
          • AdieuToLogic 2 hours ago
            > What do you mean by "libertarian advocates cannot resolve"? Like, they have no answers at all, or you aren't personally swayed by them?

            The latter I suppose.

            I qualify my answer because what few rational responses I have seen to this question are equivocations at best and thinly veiled myopic sophistry supporting personal greed in general.

            • slopinthebag 50 minutes ago
              The short answer is that "shared resources" in a libertarian system is a bit of an oxymoron. It's a category error.

              The long answer would probably be that access to these resources would be gated through pay-per-use, instead of a distributed taxation system. Of course for convenience you might end up with a structured way of purchasing a group of resources and it might even look like a roundabout way of taxation, although libertarians might argue that taxation is the roundabout way.

              Or they might give a different answer, there are different schools of libertarianism!

              * not a libertarian, but interested in niche political ideologies

      • MagicMoonlight 4 hours ago
        [dead]
    • amanaplanacanal 3 hours ago
      It's not exactly the same, since any Claude output is public domain under current law. So the Chinese aren't stealing anything here.
    • tom2026hn 1 hour ago
      What's yours is mine, and what's mine is still mine.
    • mannanj 4 hours ago
      there's no honor among thieves.
  • fjdjshsh 6 hours ago
    >The strike by Alibaba is described as a "distillation" effort, which Anthropic has said involves training a less capable model on the outputs of a stronger one.

    Claude used TB of content without permission to train their model and it was ok for them. Now someone else uses the output of a Claude model to train model and they cry foul.

    • cubefox 3 hours ago
      It was not okay for them, they had to pay one billion dollars.
      • callmeal 2 hours ago
        >It was not okay for them, they had to pay one billion dollars.

        Essentially peanuts compared to what they would have to pay to obtain the rights of everything they pirated.

        • cubefox 2 hours ago
          No. It's actually way more than what they would have paid if they legally obtained those books. The 1.5 billion dollars amount to $3000 per book.
          • internet_points 1 hour ago
            Legally obtaining a book for reading it yourself is different from legally obtaining a book for copying and republishing/reselling. If I buy a book for $5 at a sale I can read it myself or even sell it for $10 on craigslist, but I can't scan it and make a million copies and sell each of those.
            • cubefox 1 hour ago
              They aren't republishing or reselling. In fact, they buy huge amounts of books and then destroy them, which is better for the rights holders than to resell them.

              https://www.washingtonpost.com/technology/2026/01/27/anthrop...

              • m4rtink 1 minute ago
                Anyone who destroys a book on purpose is a criminal.
              • scotty79 53 minutes ago
                That's terrifying waste of real world resouces for no other purpose than satisfying the letter i of the absurd rent-seeking-enabling laws.
          • slopinthebag 2 hours ago
            > obtain the rights of everything they pirated

            They didn't just pirate those books...

      • p_j_w 3 hours ago
        That’s a pittance compared to their revenue.
  • someguyornotidk 16 minutes ago
    What exactly is illicit about what they did?

    Legally, model output cannot be protected by IP laws whether domestic or international. The most they can hope for is civil relief which is a stretch given the literally illicit methods they used to train their models.

    Ahtoropic got treated the same way it has been treating everyone else. This is the bed they made and now they, too, have to sleep in it.

  • tasuki 3 hours ago
    > The strike by Alibaba is described as a "distillation" effort, which Anthropic has said involves training a less capable model on the outputs of a stronger one.

    I don't see what's wrong about this.

    > Anthropic said the campaign was conducted between April 22 and June 5, 2026, and generated more than 28.8 million exchanges with Claude through almost 25,000 fraudulent accounts.

    What makes the accounts fraudulent? If they have paid the agreed price, surely it's fine? If they haven't paid, why did Anthropic provide them service?

    • eviks 3 hours ago
      > What makes the accounts fraudulent?

      Fake identity? And general deception about the use

      • scotty79 50 minutes ago
        Terms of use is local US fiction of wishful thinking. Nobody cares. You make something available, it's up to the consumer to decide how are they gonna use it. You don't want people to use your stuff how they please? Get off the market.
        • eviks 8 minutes ago
          Obviously wrong on all counts: the company cares. Just like isn't not up to the consumer since the provider can restrict said consumer's access, report those actions to the authorities etc. Lastly, don't like it? Get off the provider?
    • wilg 3 hours ago
      Because Anthropic has terms of service with more stipulations than just "you must pay and can use the service for any purpose"?
      • user_7832 3 hours ago
        Oh, Anthropic, the company that hoover'd up everyone else's data, and is now unhappy when others are doing to it what it did to others? The same Anthropic?
        • wilg 3 hours ago
          Yes, this joke/point has been made 10,000 times in this thread in almost every comment, and on every other previous thread. Thank you!
          • happosai 2 hours ago
            If Anthropic doesn't like people repeating this point, Anthropic should stop repeating that they are somehow entitled to keep what they have rightfully stolen.
          • scotty79 48 minutes ago
            It's not a joke. It pointing out hypocrisy and associated loss of all moral rights.
          • theshackleford 30 minutes ago
            And yet it seems to continue to need to be repeated. If the shoe fits and all.
      • Gigachad 3 hours ago
        I'm sure all the artists and creators they stole from had stipulations too.
        • esperent 3 hours ago
          The artists had actual laws to protect them, not just vaguely enforceable terms of service. And look where that got them. I have zero empathy for the huge company getting a taste of their own medicine.
        • cubefox 3 hours ago
          Anthropic paid one billion in a copyright settlement. That's a lot of money considering they never distributed the pirated books they trained on.

          Nowadays they buy copies of books, train on them, and then destroy them.

          • Gigachad 3 hours ago
            And it looks like the companies distilling Claude are paying for tokens using the subscription Anthropic provides. Seems like fair play to me.
            • cubefox 3 hours ago
              They are almost certainly paying orders of magnitude less than a billion dollars. According to another comment, they instead buy tokens resold from subsidized subscription accounts, which is against Anthropic's TOS.
          • AdieuToLogic 2 hours ago
            >> I'm sure all the artists and creators they stole from had stipulations too.

            > Anthropic paid one billion in a copyright settlement.

            Because a judge determined Anthropic was engaged in piracy.

            > That's a lot of money considering they never distributed the pirated books they trained on.

            This is "fruit of the poisonous tree" as it were. Distributing content derived from pirated content ("pirated books they trained on") is why Anthropic had to pay what they paid.

            > Nowadays they buy copies of books, train on them, and then destroy them.

            There is a case one could make that this practice could be seen as unauthorized redistribution of a derivative work intended to deprive copyright holders of legitimate revenue.

      • sampo 34 minutes ago
        > Because Anthropic has terms of service

        Not following terms of service doesn't necessarily constitute a fraud. It just means Anthropic can close an account that breaks the terms of service.

      • impossiblefork 1 hour ago
        Robots.txt are also ToS of sorts.
      • tripleee 3 hours ago
        violating their terms of service doesn't make it fraudulent?
        • tasuki 1 hour ago
          Are you not violating terms of service? Have you ever read any? I wouldn't call you fraudulent though!
        • barnabee 19 minutes ago
          Laws define fraud, terms of service define what a company would like you to do, usually in the narrowest and most abusive and extractive way possible.

          The idea that anyone would side with a company doing more to support the ToS con than (at most) terminating an account they find it violation is sickening.

          Really if we had competent, uncompromised government, most of these terms should illegal and result in Anthropic (and basically every other tech company) being hauled up in front of a regulator and fined heavily until they rewrite them to be less sociopathic.

      • gspr 1 hour ago
        So does a lot of the owners of data that Anthropic used for training. Anthropic preceeded to ignore said terms under the guise of fair use. Yet now they cry faul? Cry me a river.

        To be clear: In principle I'm on Anthropic's side here. But Anthropic et al. have been very clear that they want to take a huge dump on those principles, so here we are.

    • actuallyship 2 hours ago
      [dead]
    • ozgrakkurt 3 hours ago
      I mean they could read the traces and learn it themselves right? /s
  • drillsteps5 12 hours ago
    I'm looking forward to the trial where Anthropic will have to disclose sources of their training data, and then explain why they are entitled to charging customers for using regurgitated training data but Alibaba which trains their models on Anthropic's models are not.

    Should be fun.

    Edit: clarification

    • conception 8 hours ago
      • gaiagraphia 6 hours ago
        Quite amusing that the library of libgen is worth 1.5bil for unlimited access.

        It's about the same valuation as bun, lol.

        • mastermedo 2 hours ago
          $3,000 per title.
          • scotty79 45 minutes ago
            Do you think many authors would give you rights to create derivative works en masse for that money?
      • cr125rider 6 hours ago
        Meta/Facebook got away with it though right?
      • mannanj 4 hours ago
        That's a great cost-benefit ratio. Can you and I steal and do illegal things and pay the same cost?
        • eviks 3 hours ago
          Sure, but only if you get the same benefits
    • appplication 8 hours ago
      Being logically consistent isn’t as profitable as being aggressive and loud.
    • ninefathom 8 hours ago
      While I love the sentiment, I feel like the odds of this actually ever reaching a trial are low, given the international positioning of the parties, and the... um... complex relationships involved.

      Anthropic's actions seem performative. Others have already speculated on the likely audience(s).

      • AdieuToLogic 4 hours ago
        > While I love the sentiment, I feel like the odds of this actually ever reaching a trial are low ...

        As cited in a peer comment here[0]:

          In June 2025, Judge William Alsup of the U.S. District 
          Court for the Northern District of California ruled on 
          summary judgment that using books without permission to 
          train AI was fair use if they were acquired legally, but he 
          denied Anthropic’s request for summary judgment related to 
          piracy—finding that the piracy was not fair use.[1]
        
        Of note in the judge's finding; "the piracy was not fair use".

        0 - https://news.ycombinator.com/item?id=48667411

        1 - https://authorsguild.org/advocacy/artificial-intelligence/wh...

  • salviati 19 minutes ago
    If you have openrouter do this little experiment: Go to https://openrouter.ai/chat. Select a few models, but customize them to have an empty system prompt.

    Then ask: "你是什么模型?" ("What model are you?" in Mandarin).

    My result after trying only three times: Sonnet 4.6 says it's DeepSeek, while Opus 4.8 says it's Qwen. The second time around Sonnet said it was Anthropic Claude.

    Are Chinese companies currently complaining about Anthropic distilling their models?

  • whizzter 33 minutes ago
    Whoa, Antrophic,etc are really running afraid that their IPO's are gonna crash when people realize that the open models are Good Enough(TM).

    So I'd put it at 30% that this is a ruse, say that Qwen 3.5,etc is tainted by training by them and start issuing DMCA takedowns to protect the IPO valuation (Or they'll hold off on that, getting a DMCA takedown could backfire spectacularly if others do that to them).

  • amazingamazing 7 hours ago
    Distillation is fundamentally impossible to protect against. All you can do is slow them down. Change my view.

    Eventually these Chinese companies will release some extension like Honey, which will sit on top real, non-Chinese clients and send everything to China anyway.

    It's over.

    • lebovic 7 hours ago
      It's too late to prevent distillation of some capabilities, like writing code or finding vulnerabilities [1].

      But an AI lab can continue to produce immense economic value without releasing the model publicly for potential distillation. For example, it could use a model solely in-house to develop therapeutics.

      Hopefully there's a future where others can access frontier models, but it's not neccessary if preventing proliferation through distillation is considered more important.

      [1]: See the notes on distillation in https://dualuse.dev/posts/export-controls-on-fable

      • bandrami 3 hours ago
        My long-term prediction for the sector is that frontier models will be so expensive that they will only be available for grant-funded projects at research institutions, like supercomputer clusters were 25 years ago.
    • nonethewiser 7 hours ago
      Distilled models are necessarily behind so long as models are progressing. Models are progressing. Maybe it will be over some time in the future.

      And Berkeley’s “False Promise of Imitating Proprietary LLMs” found imitation closes the style gap fast but there is a large capability gap.

      https://arxiv.org/abs/2305.15717

      • lebovic 7 hours ago
        Curiously, this isn't always true.

        For example, GLM 5.1 is more capable at pentesting than the model from which it is alleged to have been distilled [1].

        Intuitively, this makes some sense: you can "distill" from multiple frontier models, and you can further post-train the distilled model. But I'm not sure exactly what happened with GLM 5.1.

        [1]: https://dualuse.dev/posts/chinese-models-are-sometimes-bette...

        • mh- 7 hours ago
          Interesting blog post, thanks for sharing.

          I'm curious how that comparison controls for Opus refusing (whether explicitly, or just deciding not to pursue a path) given the caption below the first image:

          >A perfect score means the model autonomously found and exploited the vulnerability.

          I'm not really suggesting that it's misleading, but wondering if I'm missing something. Otherwise I guess it seems unsurprising that you can distill a better-performing model [in specific focused areas] by simply not distilling refusals?

          • lebovic 6 hours ago
            Thanks!

            For that eval, I used an account that was labeled as a known red-teaming org by Anthropic, and I read the traces. There were no refusals or obvious avoidance behaviors, though it may have been silently nerfed.

            On the same eval, Opus 4.7 and 4.8 outperformed GLM 5.1, but GLM 5.2 is on par again with Opus. So it's at least partially measuring capabilities without respect to refusals.

            One possible contributing factor is that model capabilities are shaped differently (an example of this is GLM 5.1 vs. DeepSeek v4 Pro: https://dualuse.dev/posts/deepseek-v4-thinks-different). So if you use RL-based "distillation" from multiple models like Opus 4.x and GPT 5.x, you could get a more capable model.

            • mh- 6 hours ago
              Got it, thank you!
      • Gigachad 4 hours ago
        I'm ok with having last months model at a tiny fraction of the price.
    • nonethewiser 7 hours ago
      Im not so sure because we only seem to see distillation from China. What’s preventing tech companies from the UK, Germany, etc. from distilling Claude, GPT, etc. Do they simply lack the ability to?

      Point being there may be no technical solution but there may be a political one (theoretically).

      • sailingparrot 6 hours ago
        Meta Spark is rumored to have distilled Claude to some extent, early Gemini models as well. I think the biggest factor is that Chinese companies arent really afraid of being sued by Anthropic because the juridictions are so disconnected. European/US companies don't have the same protection.
      • avd201 6 hours ago
        Aside from politics/law, it's probably much easier for everyone else to distill from the Chinese model which already distilled Claude/GPT/Gemini. Maybe not as good a result, but you don't need to jump through dozens of hoops.
        • 14 5 hours ago
          This reminds me of the whisper game played in elementary school. Starts with a sentence and the person whispers it to the next kid who again whispers it and on and on until it goes around the circle where the last kid has to repeat the sentence. Hint it never once was even close to the starting phrase. I would love to see what one model copying another model that is again copied however many times would look like in the end.
      • Barrin92 6 hours ago
        >What’s preventing tech companies from the UK, Germany, etc. from distilling Claude

        literally nothing but given that the Chinese already did it and the models are published what's the point. You can thank the Chinese taxpayer for subsidizing the electricity bill and just download the thing

    • wg0 1 hour ago
      It's just like web scraping is impossible to guard against.

      Change my mind.

    • seany 7 hours ago
      I can't even come up with a reason to find it wrong.
      • IncreasePosts 7 hours ago
        I personally bristle at the corporate espionage and IP theft that China has undertaken the last few decades. I can't help but respond here whenever anyone brings up the inane comparison to Samuel Slater.

        But with this, I don't have an issue. There is no theft since what is being used is the exact product that is being delivered. Yes, it's breaking the ToS, but ToS are generally bullshit. Anthropic surely broke thousands of ToS or other legal terms while it was scraping for content to train on. Which is why they had to pay $1.5B

    • HaloZero 7 hours ago
      Doesn’t that require them to register an account using the browsers they’ve compromised? If anthropic adds identity verification won’t that cut that down. Maybe it will let them use Gemini inside of chrome
      • dannyw 5 hours ago
        Residential IPs don’t even matter. Developers use devboxes, use Claude Code CLI on servers from just about every cloud, etc.

        There’s probably a decent volume of customers who just buy Claude Max and spend most if not nearly all of their sessions via Claude Code, and it’s not uncommon for power users to be working on multiple concurrent projects/tasks/codebases at the same time.

        How do you really block this without also impacting your core market of developers?

      • amazingamazing 7 hours ago
        No, they could easily buy legitimate, already registered accounts and use VPNs.
        • dannyw 5 hours ago
          Why use VPNs? Just use a public cloud like AWS, or something like Linode and Vultr and all that.

          Developers use devboxes on these clouds all the time, it’s totally normal behavior.

          Most people buying these Chinese resold tokens are probably using it for coding anyway, so you don’t want the Claude.ai chat system prompt.

      • ygouzerh 4 hours ago
        Probably some business will popup, like: "rent part of your unused subscription", or even: "proxy tokens with a premium", eg. 5.5 USD on Opus 4.7 paid by the distiller to the user, that will then only spend 5 USD.
    • redwood 7 hours ago
      One simplistic way to describe distillation would be to try everything imaginable and cache the response. But trying everything imaginable is hardly trivial
  • i2km 10 minutes ago
    Couldn't anthropic just use fable to find security holes in Alibaba's systems and poison their models?

    Or maybe there's been a bit too much hype...

  • bandrami 6 hours ago
    Oh wow it must suck to have an LLM creator rip off your IP for their own gain
  • SubiculumCode 1 hour ago
    Everyone here praising these Chinese companies for their smarts (sure they are smart) has been ignoring this very big fact, they're improvements have mostly been by being parasitic on the leading edge SOTA models, not from some inherent innovation advantage. They are as innovative as their western counterparts, but they lack the compute, so their keeping up within months of those SOTA models depends on other means, like distillation attacks. I don't blame them; its the obvious only strategy when you cant compete in compute. But we shouldn't be blind to the real state of affairs: equal innovation; unequal compute; distillation attacks are the only vector to keep up.
    • kgeist 29 minutes ago
      >like distillation attacks. I don't blame them; its the obvious only strategy when you cant compete in compute

      >distillation attacks are the only vector to keep up

      It's demonstrably wrong, they invest in architectural improvements as well, for example, DeepSeek's compressed attention. When you lack compute, you need fast training/fast inference, and distillation alone doesn't solve it. From what I understand, that kind of distillation "attack" (28 mln exchanges) only slightly improves instruction tuning/reasoning traces. If the base model is crap, distilling Claude on a few million exchanges alone won't magically make your model as good as Chinese models currently are (or magically make inference faster on the limited hardware they have). And training the base model needs a proper training run. Serving users at scale needs optimized architectures as well, especially with test-time compute and ever growing context lengths. That's where architectural innovations are happening in Chinese labs when it comes to compute.

  • guybedo 6 hours ago
    This is a bit ironic, Anthropic complaining about a competitor using claude data to build its own product when Anthropic basically used all of human knowledge production to build claude, i don't think they paid every magazine, author, journalist, etc ...

    This is almost standard practice in any competitive industry anyways. Disassemble your competitor's product, study it and try to reproduce / improve.

    • roxolotl 6 hours ago
      Yea I’ll never have any sympathy for this claim given that Claude is built on theft
    • uproarchat 5 hours ago
      It's a claude eat claude world out there
    • Aldipower 38 minutes ago
      Yeah, and I believe Anthropic would "distill back" without thinking twice, if the other model would be good enough.
    • anematode 6 hours ago
      Yup, it's hard to take seriously any complaint about "stealing" Anthropic's services, when their entire business is based on massive theft.
      • usef- 4 hours ago
        The US labs do seem to have announced a lot of licensing deals though, and are buying things today due to the previous lawsuits.

        At what point will we be better to support a lab that pays (some) licenses today vs the ones that pay none?

        Some of the deals are in the hundreds of millions, so I suspect licensing is over a billion today? (Pure guess). That might become a big disadvantage in a price (or content) war.

        • killingtime74 4 hours ago
          I haven't seen any money, have you? Until they pay everyone or release weights theres really no change. Also they're doing this after they've already stolen. Not negotiated before
          • usef- 2 hours ago
            My understanding is that US labs now are paying for books, news and other content from media companies, but people in the middle (like blog authors) are left out by current courts over whether fair use applies. There's definitely an argument over whether we should tighten this, but they do seem to be under increasing pressure to be legal now by our existing interpretation. Most cases are still ongoing.

            One reason people love the Chinese video models is that they seem to be trained on every hollywood movie/etc and they're not shy about letting you use famous actors/characters in them. That might be an increasing advantage because the US labs are now being cautious.

        • c1sc0 3 hours ago
          At the very least the public should receive full open-weight open-source models in return for their transgressions. Failing that, may I suggest the guillotine?
          • usef- 1 hour ago
            In the US the courts are also pursuing labs that open their models: Meta's current court case is over the training data of the llama models they released openly.
        • anematode 4 hours ago
          I know (via probing these models) that some of my work is in the training data. My mailbox is open.
        • mannanj 4 hours ago
          > At what point will we be better to support a lab that pays (some) licenses today vs the ones that pay none?

          Why is a lab that pays all licenses today not on your list? Is ethics and morality that low on your radar?

          • usef- 2 hours ago
            I agree that that's a more consistent position for the people criticising the data slurping. But I don't see people advocating those open-data models in these threads? It's usually about defending the zero-licensing competitors.

            My (limited, outsider) understanding is that due to the court cases US labs are pressured to be legal now (for instance, bulk scanning purchased books instead of Books3, and the licensing deals with media companies). But international labs are not. The "not licensing everything" statement is more about current copyright law not requiring licensing of everything. But that question is still up in the air as cases are ongoing.

      • hsbauauvhabzb 5 hours ago
        You should. Companies like this will inevitably try and pull the ladder up behind them.
        • SiempreViernes 4 hours ago
          You mean Anthropic and OpenAI, right?
          • hsbauauvhabzb 4 hours ago
            All major AI companies. And any other high value industry which can be locked off (via tax brakes, patients etc)
    • sp527 5 hours ago
      Ironically, it's likely that the only reason USG let them get away with this — instead of making obvious and necessary adjustments to copyright law — was so that the industry would remain competitive with China.
      • csande17 4 hours ago
        Given that the most recent time Anthropic attempted regulatory capture, the US government responded by saying "alright, we agree that Mythos is too dangerous to release, so we've banned you from releasing Mythos," I can't wait to see what the outcome of this next push is.
    • reasonableklout 4 hours ago
      Anthropic did pay $1.5B to authors. But yes, it would be much better if they paid everyone on the internet dividends from every Claude chat. Or released Claude as an open model.

      In practice, the former isn't very realistic, while the latter is politically dead as this is becoming a national security issue.

      • SiempreViernes 4 hours ago
        Anthropic was forced to pay some people they stole content from, there was no attempt at getting permission ahead of time.

        And paying basically everyone online is more or less a solved problem, it's what ad agencies have to do every day.

      • MagicMoonlight 4 hours ago
        [dead]
  • netcan 2 hours ago
    Hypocrisy is a form of corruption.

    Anthropic's IP was created by harvesting and "distilling" other people's IP. Copyrighted materials, and the commons... which they have essentially privatized.

    The commercial goal is to avoid competition. One of the main worries for AI is "commoditization" which has come to mean "not a monopoly." To that end, it doesn't matter is the competitor is Chinese American or other.

    Their motivation here is clearly protectionism. The argument they make to politicians is national security. The legal argument is IP-theft, violation of service agreements or whatnot.

    This is all very dangerous. Commercial interests repackaged as national security can lead to armed conflict.

    • trymas 2 hours ago
      > Anthropic's IP was created by harvesting and "distilling" other people's IP. Copyrighted materials, and the commons... which they have essentially privatized.

      Anthropic and others argue that because LLMs don’t output full copyrighted works word for word - hence their LLMs aren’t infringing on copyright laws.

      I think (if this ever comes to that) Chinese lab should use same arguments against Anthropic.

      UPDATE: this is slight hyperbole of course, not worth arguing what they actually said. The point is intent and the facts - "The Big LLMs" "distilled" collective knowledge including copyrighted works at unimaginable scale, but it's all kosher and totally not piracy/copyright infringement. Though if you're teenager torrenting an mp3 - you'll get screwed.

      • nutjob2 2 hours ago
        > LLMs don’t output full copyrighted works word for word

        Apparently they do, as per the evidence in the NYT vs OpenAI suit.

      • gspr 1 hour ago
        > Anthropic and others argue that because LLMs don’t output full copyrighted works word for word - hence their LLMs aren’t infringing on copyright laws.

        That surely can't be what they argue, because I'm sure I can't translate a copyrighted book into a different language and say "that's fine, it's not word-for-word".

      • Hamuko 2 hours ago
        Isn’t the output of LLMs completely copyright-free in the US?
        • nutjob2 2 hours ago
          One lower court has said that the output of AI models is uncopyrightable.

          But the real unsettled issue is if model training is fair use, and where copyright infringement might creep in to model output.

          • camgunz 2 hours ago
            The copyright office itself also says this when it talks about determining authorship.
    • steve1977 2 hours ago
      Bad China is stealing our stolen IP!
      • badgersnake 2 hours ago
        And putting it into free models like quen. It’s hard to care about this.
    • handoflixue 2 hours ago
      "Copyright violation of a published work" and "stealing private trade secrets" are in fact very different crimes.

      Humans have spent millenia harvesting and distilling each other's IP - "the shoulder of giants" and all that, so it's an especially disingenuous take.

      • ajb 2 hours ago
        For something to be a trade secret, you have to actually keep it secret. If I get the ingredients of Coca-cola from an ex-employee, I've stolen a trade secret. If I work it out by doing a chemical analysis, I've stolen nothing.

        There is a difference with anthropic, as no-one signs a licence agreement to buy a coke. But Anthropic are also not saying you can't publish the output of their models. It's not clear to me if trade secret law will (or should) cover a secret which can be extracted from information that licensees are not restricted from publishing.

        • handoflixue 1 hour ago
          Wait, really? So why doesn't someone just reverse-engineer Coca-Cola like that? My understanding was that a "clean room" implementation is fine, but not reverse-engineering. If you can just copy everything on the market, why isn't someone already doing that?
      • trymas 2 hours ago
        > Humans have spent millenia harvesting and distilling each other's IP

        You maybe somewhat correct, but also copyright lawyers wouldn’t have work if it would be up for grabs to take others IP willy nilly just because “shoulders of giants and all that”.

        • handoflixue 58 minutes ago
          I mean, there's an obvious difference between "distributing copies" (which is what the law was designed to prevent) and "training an LLM". We already managed "banning LLM output that contains copyrighted text" - it's much easier to just pirate a copy of the text. So I think the copyright lawyers will continue to have work as long as human written texts are worth buying.
          • trymas 30 minutes ago
            > I mean, there's an obvious difference between "distributing copies" (which is what the law was designed to prevent) and "training an LLM".

            What's the difference between me/you downloading an mp3 through torrents for personal use (not distributing) while risking criminal punishment in most of the western world and BigCorp downloading petabytes worth of copyrighted works "to train an LLM" and resell it?

            Can me/you do the same, when police comes to mine/your door?

            "Dear police, don't lock me up - I was just going to train an LLM!"

  • chvid 3 hours ago
    Unlike Anthropic and OpenAI, companies like DeepSeek, Alibaba, z.ai open source their models which allows for true model to model distillation rather what you can do when the model is only accessed via an API with its reasoning chain hidden away.

    What Alibaba is doing is that they are tuning and training their models based on usage data from someone accessing Anthropic's models; in Anthropic's terms of service that usage data does not belong to the end-user but to Anthropic and they are trying to elevate this breach of their tos to a national security issue.

    To me the battle between open source and closed source AI is literally a battle between good and evil.

    Between a dark future where computing is centralized, surveilled and controlled by one or two entities. And a lighter future where computing is de-centralized, principally in the hands of end-users, who are ultimately free to understand, tinker and build what they want.

    While I appreciate the freedom and wealth of the west; on this point we are clearly heading down the wrong path.

  • nullbio 2 hours ago
    Anthropic has no right to cry about this when they train their models on the entire internet, which is not their content to begin with.

    If it's not obvious yet, this technology wants to be free and shared. Stop trying to protect your mote and do the right thing.

  • crnkofe 1 hour ago
    Sounds like just a case of pirates "illicitly" stealing from pirates. I don't really see anything ethically questionable there. I wonder if US corps will ever come out about all the resources used to train the original models and who they actually asked for permission when collecting data.
  • exabrial 4 hours ago
    I like Anthropic's models, use them regularly. However, it weighs on my mind that there is quite the irony of an LLM company complaining about someone stealing their stuff or using it in a way they don't like. The training data for these models is a massive gray area that they are hoping people seem to just forget about and move on.

    That being all said, Anthropic seems to be a good company, I'd work for them, but they probably need to help themselves out of the spotlight. A little too much press coverage as of late.

  • bg24 2 hours ago
    Relevant article - https://www.anthropic.com/news/detecting-and-preventing-dist... (3 labs generated over 16 million exchanges with Claude through approximately 24,000 fraudulent accounts). So extraction in this context is distillation.

    While it is obvious to many, a modern LLM is built in roughly three stages: the foundation (pretraining) model, then SFT/supervised fine-tuning (distillation makes it easy), then the RL/RLHF stage on top (most effort-intensive). For today's reasoning models, RL/RLHF is becoming the most compute-intensive part.

    Companies like Anthropic spent millions building those fine-tuning examples. A follower can shortcut that on both cost and time by distilling, and it will keep happening: every time the frontier lab climbs higher, others will find a way to shortcut the new gap. There's very little Anthropic can do beyond fraud prevention and blocking accounts that violate their terms of service.

    On the policy question, I'm completely against banning Chinese models. I'm a heavy Claude Code user and I'll keep being one. But there should absolutely be price competition. China is eating the rest of the world for breakfast, lunch and dinner on manufacturing, and it did not help to ban them. Frontier pricing can't sit at 10x a capable competitor. It doesn't need to be at par either — demand is higher, and quality, trust, and fewer tokens to finish a task are worth a premium — but 4–5x is defensible.

  • khriss 2 hours ago
    I am not sure how it's OK for Anthropic to basically ignore copyright to train frontier models (using work owned by others without permission) while simultaneously claiming Chinese AI companies doing the same to them is illegal.
  • igleria 39 minutes ago
    https://en.wikipedia.org/wiki/Ali_Baba_and_the_Forty_Thieves

    > In the original version, Ali Baba (Arabic: عَلِيّ بَابَا, romanized: ʿAliyy Bābā) is a poor woodcutter and an honest person who discovers the secret treasure of a thieves' den, and enters with the magic phrase "open sesame".

    Open sesame alright...

  • AJRF 1 hour ago
    There is so much hot air and guff around AI, so please if you don't believe me verify yourself, but GLM 5.2 is "good enough" to replace Claude Code / Codex.

    No it's not frontier, but it's beyond that point that Opus 4.5 hit where people started to really depend on Claude Code around last November time. It's also a fraction of the cost of a Claude Code subscription especially when you account for how high the usage limits are.

    You get more usage than Claude Code $2400 a year tier for $1344.

    That is a real threat (as opposed to the BS anthropic is trying to sell you in the article in the original post) to the western AI industry. Similar performance for half the cost and it's NOT ran by a US company - uh oh.

    I suspect America is going to do what it always does, play a very dirty and underhanded game of blocking competition by trying to front some moral high ground as the reason.

    • SubiculumCode 57 minutes ago
      It seems more like the Chinese companies ar playing the dirty game, distilling through bot accounts, not letting real competition across their firewall.
  • randomboy3423 7 hours ago
    A partly insider on this.

    I think Anthropic is just marketing / bluffing, because they don't even have the data.

    They do distill the models, but they don't go to Anthropic, they just use platforms like aws bedrock, there are too many restrictions on Anthropic's own platform.

    • bilbo0s 6 hours ago
      >they just use platforms like aws bedrock, there are too many restrictions on Anthropic's own platform

      This is actually the only way that what Anthropic is alleging would make any kind of sense. And, as a matter of fact, is exactly what every enterprise does to train models.

      This kerfuffle should be interesting to watch.

      But, as always, everyone (in the US) should fully download all the Chinese models while you can. I suspect this may be the "Phantom Menace" they use to render illegal our use of Chinese AI tech just as they've rendered illegal our use of Chinese cars. Only difference is, we peasants may need the Chinese AI tech to have any chance of competing with Big Tech in the future.

      And even with the Chinese tech, as Big Tech spreads their AI out into more and more niche areas, we'll likely still not be able to build startups that can compete with them.

      It's just that without Chinese AI tech, we'll have no chance at all.

      • altmanaltman 5 hours ago
        > And even with the Chinese tech, as Big Tech spreads their AI out into more and more niche areas, we'll likely still not be able to build startups that can compete with them.

        You mean like Anthropic will eventually run Walmart? Or Salesforce? or Adobe? Or do you think midjourney will replace all medical spas? OpenAI will run the next Tesla? How can they focus on all this without raising trillions more? Why wont the gov force them to stop if they monopolize all niches even if they could?

        Building a frontier AI lab and pushing models forward is already a massive undertaking but we are assuming they will also create massively successful startups which nobody can compete with?

        idk sounds like the dream of people like Dario but not much sense does it make in the face of economic reality.

    • chews 4 hours ago
      there are vibe coded proxies that act like Claude Code. they use the sub not the api key. but they give you api key functionality... I know this cause I have the vibes.... and it works on every one of the other harnesses, it just takes some mitmproxy work... but ya. it's fair to say these are not the droids you're looking for
  • dev_l1x_be 12 minutes ago
    Alibaba did a research on Anthropic capabilities? Interesting.
  • gmerc 3 hours ago
    Evergreen, really, Anthropic's desperate screaming for government protection, aka pulling up the ladder after them. Nothing short of disconnecting global markets will work because the incentives are just too damn delicious

    https://georgzoeller.com/blog/posts/us-ai-labs-love-the-ai-r...

  • cush 3 hours ago
    It’s hard to see how distillation is any different than how these models were created in the first place - siphoning up all human knowledge without consent, credit, or compensation
  • paxys 7 hours ago
    Repeatedly warn everyone that your models are so good they will wreck cybersecurity.

    Complain/brag that chinese firms are illegally using the models and bypassing export controls.

    Be surprised when your model gets banned by the government.

  • abbassix 1 hour ago
    "It [Anthropic] said DeepSeek's operation involved over 150,000 exchanges". In my humble opinion, a mere 150k exchange for an LLM could only be a benchmarking and not a distillation! I think the US companies should accept that after decades they have rivals surpassing them, just like they did Europeans almost a century ago.
  • Grimblewald 25 minutes ago
    Claude thinks it's chatGPT, and various chinese models sometimes, whats up with that?
  • democracy 3 hours ago
    thats brilliant - "we gonna take your job away from you, please start using our tools", "we stole the content to sell you, and now we are getting robbed, please feel sorry for us", what's next?
  • neurostimulant 1 hour ago
    > Anthropic said in a February posting that it had identified a campaign by Chinese AI startup DeepSeek ...

    > It said DeepSeek's operation involved over 150,000 exchanges

    That volume seems more like the number of requests 15 employees using Claude Code would generate in a month. It seems too small for a large scale model distillation campaign.

  • PeterStuer 4 hours ago
    The whole investment/valuation model of AI companies is based on "winner takes all", aka a monopoly. This nescessitates regulatory capture and lawfare.

    Anthropic has been advocating openly for pulling up the drawbridge, ending competition and ending progress.

    They will continue to lobby for restricting your access. If the Mythos/Fable restrictions would have come in after their IPO, they would have danced with joy aa this defacto has them achieve their goal after unloading the mountain of debt from the institutional onto the retail investor.

    As it stands, they are set up to be aquired by Google, Apple, Amazon, SpaceX or Microsoft or any other 3 letter agency good boy for cheap.

  • zakkl 12 hours ago
    It sounds like Anthropic is eagerly trying to show to USG that they are willing to heavily monitor ‘foreign adversaries’ on their platforms.

    This combined with no implementation of KYC makes it seem like they want to find a middle ground with Fable where its off of export controls but they promise to prevent China and specific others from using.

    • ninefathom 8 hours ago
      This seems to me like a stab in the right direction.

      Obviously their actions are going to be fiscally motivated at the root, but sussing out how they intend the precise dynamics to play out is more nuanced.

      Thinking of this as an effort to woo the defense hawks cuts a very clear path.

    • verdverm 7 hours ago
      This is not the first time it happened. What have they done to improve the situation? I suspect it more a cat & mouse game, with a lot more cats playing.
  • one33seven 2 hours ago
    Well, Anthropic stole their training data from hundreds of people, now someone stole the result from Anthropic. Seems fair, I hope someone releases it for free so we can train away the guardrails and have some fun
  • neves 6 hours ago
    So said the guys who "extracted" knowledge from all pirated books
  • gloosx 1 hour ago
    So why don't they proceed with a lawsuit instead of public accusations? Let the court decide if these "distillation attacks" are actually illicit.
  • a34729t 3 hours ago
    You know what? We should all get Claude Max subscriptions and max them out hard and post our full conversations on codeberg, as an open training set.
  • camgunz 2 hours ago
    I am never even once hearing intellectual property or copyright claims from Anthropic, whose product depends entirely on having consumed all human output ever made regardless of those rights.
    • steinvakt2 2 hours ago
      If the data consumed (required to train such a model) is open source/openly available/public data somehow, then a majority of the revenue belongs to the public as well. Such as the philosophy behind the Norwegian oil fund etc.
    • foxrider 2 hours ago
      Exactly. They scraped the internet we all of us built with our own research, open source work, sharing, etc. I'm never going to agree that they own their models.
  • bozdemir 1 hour ago
    Oh wow !!! Antrophic always asks people indiviually if they can train on their personal data. I'm shocked ! Bad Aliba ! Bad....
  • hirako2000 14 minutes ago
    Karma is a thing.
  • octocop 51 minutes ago
    Isn't this done in the open? I saw the Qwopus model the other day. Basically same thing?
  • podgorniy 34 minutes ago
    Something something about benefiting all humanity
  • jameson 2 hours ago
    AI companies stole the internet.

    They should collaborate and come up with ways to give back to society rather than competing and complaing.

    Thieves can't complaint about what they stole.

  • haritha-j 1 hour ago
    Oh gee, I've misplaced my world's smallest violin.
  • TheAceOfHearts 3 hours ago
    Someone should setup a plugin or something for Claude Code that makes it easy to log all inputs and outputs for people who are willing and interested in sharing their usage. I don't want Anthropic to be the only company that can train on my usage, I want to share my usage so it can be used for training all new models.

    Once you have a system for collecting all logs, you just need a place where they can be submitted. Ideally it would be a freely licensed dataset that is publicly available for everyone.

    Has anyone built this yet?

    • thomasfromcdnjs 2 hours ago
      Discussed building it with my friends, obviously you might share secrets and other real reasons, but if gangs of corporations are already doing it, I don't see why we shouldn't just share it amongst the crowd too.
      • TheAceOfHearts 2 hours ago
        Yeah I could see it being a problem if you're doing work on closed source or repos with sensitive credentials. Since my usage has all been on open source projects I'd be happy to share everything I'm doing if it can help train better models.
    • cush 3 hours ago
      Yikes, no thank you
      • TheAceOfHearts 2 hours ago
        Do you have a substantive reason why you dislike this? What is the problem if it's opt-in? Nobody is forcing you to share your usage if you don't want to.

        I'd prefer it if all the model builders could train on my usage rather than being limited to a single company. That'll hopefully help make all the models better in the long-term.

    • slaw 2 hours ago
      I don't mind being paid for using LLM, but working for free?
  • theplumber 1 hour ago
    Let’s hope they distilled it properly so we can have the best of both worlds: a decent model to work with without Anthropic’s drama.
  • monegator 1 hour ago
    Soon, when even the enterprise subscriptions will have ads, every session will begin with a mandatory generated image:

    > you would NEVER distill a model..

  • jackzhuo 2 hours ago
    most Chinese models are now open-source, whereas ppenai, claude, and gemini are closed; for example, deepdeek, the release of its every new model is accompanied by a corresponding research paper, and it now fully supports huawei's new chips.
  • estetlinus 2 hours ago
    It all sounds like a really fragile business model. I cant imagine a world where AI is NOT commoditized.
  • zkmon 1 hour ago
    I don't understand. If they are simply using our API and paying for tokens, it's called a "transaction" and not "attack". The user is our customer who is supporting our business by buying our services. And we call them attackers. We happily make money by selling our services, and then call it as attack.

    Back in the day, an "attack" was supposed to mean be someone acquiring our assets without paying for them or without having our consent. But none of this seems to have happened in this case.

    We built a product without paying for most of the raw material we have used, and we don't call that as an "attack". Did we change the meaning of "attack"?

    • alpineman 1 hour ago
      Did Anthropic 'attack' all those authors it was forced to pay $1.5bn to for using their work without permission?
  • dminik 1 hour ago
    This is supposed to be negative, but all I can really think of is "Good."
  • _fzslm 6 hours ago
    Anthropic being pissed enough to announce this means that, despite encrypting their reasoning chains, it doesn't matter – distillation lives on.

    Sweeeeeeeet.

  • jonplackett 2 hours ago
    How can there be any moat for AI ever, if you can just steal a model by talking to it?
    • gspr 1 hour ago
      This is what I find the most fascinating about the people arguing that you can copyright-wash anything (e.g. FOSS code) by passing it through an LLM. Surely that same logic applies to the LLM itself?!
  • sscaryterry 39 minutes ago
    What goes around, comes around.
  • throwaway27448 2 hours ago
    "illicitly" is doing a lot of work here. IP makes no sense, and we get better software as a result. Who is going to cry if anthropic fails?
  • NDlurker 6 hours ago
    I don't see what the problem is. They found a loophole and exploited it. Good for them.
  • rw2 4 hours ago
    This is making the case for Anthropic KYC for US citizens. No one would allow their accounts to do this if they were on the hook for it from the US government.
  • ycui7 3 hours ago
    in a few more months, when Chinese model gets to Mythos capacity and Fable still locked down. What Anthropic will say? Why can they just admit they are not the only people who know how to train an LLM model.
  • BigTTYGothGF 7 hours ago
    If you're an AI booster surely you'd think this was a good thing as it means more models are available in more places to more people more easily. I'm exactly the opposite, and I think this is a good thing because I want Anthropic to suffer.
    • rikima_ 7 hours ago
      so it’s a good thing whichever way you look at it
      • OutOfHere 6 hours ago
        That's exactly right. One can be an AI booster and want Anthropic to suffer, all for the greater good of promoting access and diversity of AI.
    • nonethewiser 7 hours ago
      That doesnt follow.
  • AndreasMoeller 3 hours ago
    Unless you own stock in Anthropic, this is a good thing right?
  • thadk 7 hours ago
    Does anyone have hints on what kinds of prompts are most used for a distillation like this—SWE-Bench sorts of things?

    Is reconstructing the compressed knowledge in the model like reconstructing a lossy JPG or MP3 a reasonable analogy?

    • dannyw 5 hours ago
      RLAIF is a good place to start reading.

      Claude will also help you with (mostly good advice) if you ask something like “Research and help me make the most effective plan to train a smaller student model to be better from a teacher model”.

      I actually was doing an experiment with a GLM->Gemma E4B for fun, and Claude kept on suggesting I should also add Claude Opus as a teacher lol, suggesting techniques I haven’t heard of like thinking inversion (train a small model to deconstruct summarised thinking into detailed native thinking format of the student).

      So I can absolutely see and understand the concern around Fable’s frontier LLM development mitigations, but their approach of silently degrading is completely wrong and dangerous.

      AI classifiers, like all AI, can make mistakes, and it’d only be a matter of time before it mis-fires and silently sabotaging a university’s HPC cluster for physics simulations or something because the shape looks like DeepSeek or whatnot to a dumb fast classifier.

    • Chu4eeno 6 hours ago
      There are some Claude datasets (of indeterminate provenance) floating around on huggingface you can look at (or at least used to be, they might've been taken down).
  • 20k 6 hours ago
    it sure sucks when people steal your hard work for free without paying for it doesn't it anthropic
  • _3u10 36 minutes ago
    The outputs belong to whoever purchased them. What are they complaining about?
  • pyrale 4 hours ago
    Did Alibaba procure tons of stuff from Anthropic without paying, and use it to train a model?

    I don't see the issue. Didn't Anthropic train on our data, which it acquired illegally?

  • anabis 6 hours ago
    Incentive is for users in general to release sessions (sans PII, credentials) so all AI get better and there is alternatives. Even if China didn't do this, I don't see frontier labs being able to charge premium over others for long. RSI maybe?
  • watutalkinbout 4 hours ago
    An AI company stealing intellectual property?!

    Oh, the inhumanity!

  • rsynnott 1 hour ago
    Oh, _now_ we care about IP, do we?
  • aaa_aaa 1 hour ago
    Haha cry us a river Anthropic.
  • seydor 3 hours ago
    It's not fair when others do it.
  • digitaltrees 3 hours ago
    Call the wambulance a company that stole all of humanities public data to train a model is mad that someone used their model to train another model.

    Give me a break. Every employee of anthropic is going to have $20m or more at the IPO.

    I found out today that an employee of the home care agency I own is homeless. We are trying to figure out how to help her but it's shockingly common in the industry and there are limited resources to solve the reality of working homelessness.

  • c0rruptbytes 6 hours ago
    if they’re paying for the tokens, what’s the problem
  • gaiagraphia 7 hours ago
    A company which got rich on extracting the world's content is complaining that another company has extracted their work?!

    LOL!

    Get a grip, son.

  • uberex 6 hours ago
    Hey, Alanis Morissette, this one is ironic.
  • hit8run 1 hour ago
    Thieves stealing from each other? No way. Guess on what anthropic trained their data.
  • Madmallard 2 hours ago
    Sounds like fair game considering Claude is built upon the theft of creative assets of the entire world and aims to eliminate white collar jobs entirely
  • awkwabear 7 hours ago
    Wait so they're upset that people used their IP to train a model without their consent or paying them anything?

    or is this just about the token reselling?

  • emsign 11 minutes ago
    And that's coming from the intellectual property thieves. Laughable. Let the Chinese steal the models, they will only make it cheaper for everyone.
  • anhtudev 6 hours ago
    People prefer Chinese models to US models. Looks like it is a counterattack.
  • tonyoconnell 7 hours ago
    The narrative is moving towards KYC
  • budududuroiu 4 hours ago
    Has anyone else noticed that Deepseek v4 running in Claude Code will try to read, list, tail as many files/logs/... as it can for even the most simple tasks?
  • asadm 3 hours ago
    is there a good recipe or guide on doing a successful distillation these days?
  • zb3 8 hours ago
    If true then Alibaba is doing us a public service, good job, I hope this extraction was successful.
  • Groxx 4 hours ago
    Perhaps this is related to the "Mythos is too dangerous and cannot be exported" movements? It'd be a fairly effective way to justify extreme actions in combating it.

    One could even wonder if they requested it, as a tactic to support their eventual IPO valuation.

    Which is part of the problem of such an obviously-corrupt government: conspiracy theories are somewhat reasonable, as they keep getting validated.

  • serverlessmania 1 hour ago
    And Alibaba is releasing the full model weights open source under Apache 2.0, Anthropic… fuck that company.
  • yogthos 5 hours ago
    So let me get this straight, a company which built its whole business on ignoring IP is all of a sudden upset that somebody is not respecting their IP?
  • exe34 2 hours ago
    Anthropic also trained on all human knowledge, so I'm okay with others distilling their models.
  • truthbe 5 hours ago
    How do I donate my logs
  • ece 6 hours ago
    It's hard to sympathize with Anthropic for this or the export ban, the hype over model capabilities probably fuels both things (in some ways). Training data for me, but not for thee (at any scale) doesn't seem like a tenable position. If anything, Claude's constitutional outputs should be trained on more rather than less.
  • johnnyevert 1 hour ago
    The pot calling the kettle black.
  • grayhatter 3 hours ago
    Oh no, someone is profiting of the work of others?!

    anyways...

  • nicman23 3 hours ago
    fucking lol. it is always funny when companies use opensource and other free for non commercial use - and plain old piracy - and then cry about the same practices.
  • soundworlds 2 hours ago
    How the hell does Anthropic continue to make such hypocritical complaints without deeply cringing?

    It's becoming embarrassing to watch

  • jrflowers 7 hours ago
    I like that they use “illicit” and “fraudulent” like as if model distillation is illegal and giving them money and then doing whatever they want with the output of their publicly accessible models (which Anthropic does not own) is… also illegal?

    “Anthropic, red faced after unattended ice cream cone eaten by ants on park bench, once again demands government pick it as forever winner, adds ‘no take backsies’”

  • ProAm 7 hours ago
    Says the company that is involved in the largest copyright heists of all time to build it's product.
  • 1a527dd5 1 hour ago
    "Hypocrisy, thy name is you"
  • leentee 6 hours ago
    What I get from this is frontier model capabilities are being stagnant.
  • OtomotO 4 hours ago
    Karma truly is a bitch
  • andai 7 hours ago
    We have Claude at home!
  • rvz 12 hours ago
    Notice how Anthropic is now scapegoating Chinese models providers like Alibaba and outright accusing them of distilling their models.

    Whether if it is true or not, this is part of their effort into using them as an example to scare everyone into getting congress to ban powerful models from being accessed outside of the US and also banning powerful local models from being released.

    Anthropic does not care about you, and they are not your friends.

    • sheepscreek 7 hours ago
      I think it’s more than that. Piecing together the perspective of a few commentators in this post - it’s plausible Anthropic is trying to shift the narrative from US vs. Rest of the world to US vs. China.

      In other words, they want to sell Fable or future more powerful models to rest of the world (presumably all future models are going to be more powerful than current gen). One way they can sell this is to the government is by scapegoating China (which is their primary concern anyway).

      This is working on the presumption that non-US companies form a material portion of their current revenue.

    • re-thc 8 hours ago
      > Whether if it is true or not

      If it was just "that easy" then I doubt only "Chinese models" would be doing it and we'd already be packed with competition.

      Distilling might be a thing but it isn't a free win.

      • skeledrew 7 hours ago
        Only China really has the resources (multiple labs invested in the space), culture (Asians are generally collectively-inclined, so sharing is in their core) and political bent (there will be no diplomatic repercussions) to put up a fight.
        • re-thc 7 hours ago
          > Only China really has the resources (multiple labs invested in the space)

          That's not the point. Why is it a country thing? There are plenty of non-China startups in this space having resources at that scale. The "China" has resources is some "Western media narrative" speak. So Meta should have won a long time ago? Or xAI?

          > culture (Asians are generally collectively-inclined, so sharing is in their core)

          Just stereotype it? So we've gone from China -> "Asian"? Then where is your Korean or Japanese model etc? And somehow you know they're sharing.

          > political bent (there will be no diplomatic repercussions) to put up a fight

          More inferring from "Western media news"?

          Where's the reality?

          The media hyped up Gemini / Google TPU free-win last year. How did that go?

          • skeledrew 6 hours ago
            > Why is it a country thing?

            Because the China vs US geopolitical situation is a thing. Meta is a social media company, not an AI company, and they direct their focus as such. xAI just never got serious traction so now they're selling their compute. Also if a US company were caught distilling, I think Anthropic could actually take them to court, and I'd guess they don't want that kind of PR.

            > Just stereotype it?

            Is China not Asian? Are Asians not generally collective/cooperative, as opposed to individualistic/competitive?

            The "and" that joined those 3 items is very important: it means you can't pull them apart and address them independently as they each contribute to the context. I'm not too sure about Korea, but in a way Japan is a US colony in all but name. Both are very much politically intertwined with the West (along with RoC/Taiwan), which means nothing major that may be against US interest happens.

            The reality is that China and the US are essentially in a trade war, where the latter is trying its best to keep the former in the Dark Ages, because "national security", but the former is refusing to take it lying down and continues to make progress regardless[0], because they have the resources and will.

            [0] https://thenextweb.com/news/china-lineshine-supercomputer-to...

            • re-thc 3 hours ago
              > Because the China vs US geopolitical situation is a thing.

              By the media? It's easy to point fingers at a blackhole.

              > Meta is a social media company, not an AI company,

              Alibaba (the discussion here) is not an AI company too (by your definition).

              > Also if a US company were caught distilling, I think Anthropic could actually take them to court, and I'd guess they don't want that kind of PR.

              Meta has been to congress. Microsoft, Google etc have been in lots of court cases and continue to do so. Do you really think that is what stops them?

              > Is China not Asian? Are Asians not generally collective/cooperative, as opposed to individualistic/competitive?

              This is exactly the "media" view you get. It's just stereotypes and generalization.

              And yes, that is wrong by the way. Evident in real data. "China" as a whole wins market share in many areas but no 1 company has as much of a monopoly as US companies do. Why? There's so much competition that it is scary. So are you sure they don't compete?

              > but in a way Japan is a US colony in all but name

              Again, I almost give up seeing this. Clearly, not. If a whole country, the world's top 5 in GDP is only that to you something is wrong with what you're seeing - not with the country.

              > Both are very much politically intertwined with the West (along with RoC/Taiwan), which means nothing major that may be against US interest happens

              On the table? You do know that China is a top trading partner with all of these on your list. Despite whatever spat you might see in the media.

              > The reality is that China and the US are essentially in a trade war

              No. That's what the US government wants you to believe. It was even documented that in his 1st term, Trump, wanting a grand policy asked Krushner, whom then suggested China (pretty randomly) and so they went with it. Trump has now done less "China" related things lately due to all the backlash that you'd think he has moved on and found new toys.

              Until very recently, the export ban GPUs had such a loophole that Chinese companies were able to use subsidiaries outside of China to buy and train that the whole thing was meaningless.

              i.e. conclusion: stop getting brainwashed by media articles. It's all a show to get someone like you riled up.

  • stego-tech 6 hours ago
    I'm sorry, but I can't stop laughing at an AI company crying about theft of their IP.
  • toss1 4 hours ago
    Nevermind government edicts & bans -- this seems like reason enough for them to require Know Their Customers, require ID, and shut of certain nations.

    Failing to have done so seems to have allowed 25000 fake Chinese accounts to walk off with their product...

    OFC I wouldn't trust the Chinese enough to ack their models the time of day, but Anthropic seems to have allowed far more ... yikes

  • asasidh 4 hours ago
    People in glass houses shouldn't throw stones. Anthropic keeps throwing stones every few weeks.
  • krembo 4 hours ago
    Similar to improving an independent search engine by scraping Google search results and learning from it. Shady but legit
  • dainiusse 3 hours ago
    I am sorry, but companies doing biggest IP theft in history have no moral right to complain here.
  • secretslol 5 hours ago
    Another day, another excuse as to why Fable 5 was pulled. Just waiting for Anthropic saying the Persona partnership was the fault of the Chinese.
  • dolebirchwood 3 hours ago
    Good. I'm glad. Keep it up, China. Loving my cheap GLM and DeepSeek.
  • PunchyHamster 53 minutes ago
    Being absolute ass to entire internet as you scour everything with no regard to common protocols - fine

    Getting treated exactly same by competition - "we need rapid, coordinated action among industry players, policymakers and the global AI community."

    Absolute scum. And the gall of going "oh buh it can be used for military, quick govt do something".

  • unnouinceput 1 hour ago
    Oh, c'mon. If Alibaba wanted, it can have the entire Claude/Mythos source code and data by next week. All you need is enough bribe to a developer that has access to the repository. Humans are always the weakest link in anything.
  • scotty79 58 minutes ago
    Nobody cares. Grow up.
  • guluarte 6 hours ago
    Anthropic training their models full of copyright data, so?
  • lossolo 7 hours ago
    > Meanwhile, on June 12, two days after Anthropic sent the letter, the Commerce Department imposed controversial restrictions on Anthropic's latest Mythos and Fable AI models because officials feared they could be deployed by military intelligence users in China and other countries of concern.

    So that was the real reason for the Fable restriction? Because Anthropic wrote a letter to the US government saying that China was distilling Fable?

  • KennyBlanken 6 hours ago
    willy wonka oh-go-on-dot-gif

    Gosh, overusing accounts running up unplanned-for expenses?

    Kinda reminds me of...overusage charges and inflated expenses clients have had to deal with because Anthropic, OpenAI, Grok, etc have been "illicitly extracting" everything they can grab from said websites, as fast as they can. In what amounts to a DDOS, frankly.

  • Pxtl 7 hours ago
    "You're trying to kidnap what I've rightfully stolen!"
    • DrewADesign 7 hours ago
      “Hey! Haven’t you heard that two wrongs don’t make a right?!”

      - Entitled jerk that initially wronged people

  • bridgettegraham 6 hours ago
    lol. good for the chinese. I hope their models get better than the closed american ones quick so we can stop using "controlled" models.
  • youknownothing 7 hours ago
    laughs in ironic
  • 8note 4 hours ago
    so what? anthropic stole this functionality from everyone else
  • watwut 5 hours ago
    How dare they! Only we should be illicitely extracting everything others done!

    /Anthropic-probably

  • JasonHEIN 5 hours ago
    we now know what to use when Fable is too dangerous !
  • johnwheeler 4 hours ago
    Well, of course they did. Are you kidding?
  • cws_ai_buddy 2 hours ago
    [flagged]
  • Anoian 2 hours ago
    [dead]
  • yashthakker 5 hours ago
    [flagged]
  • ElenaDaibunny 5 hours ago
    [dead]
  • animanoir 2 hours ago
    [dead]
  • z0ltan 6 hours ago
    [dead]
  • Mr_Xpes 7 hours ago
    [flagged]