vessenes 8 hours ago

I tried Kimi on a few coding problems that Claude was spinning on. It’s good. It’s huge, way too big to be a “local” model — I think you need something like 16 H200s to run it - but it has a slightly different vibe than some of the other models. I liked it. It would definitely be useful in ensemble use cases at the very least.

  • summarity 7 hours ago

    Reasonable speeds are possible with 4bit quants on 2 512GB Mac Studios (MLX TB4 Ring - see https://x.com/awnihannun/status/1943723599971443134) or even a single socket Epyc system with >1TB of RAM (about the same real world memory throughput as the M Ultra). So $20k-ish to play with it.

    For real-world speeds though yeah, you'd need serious hardware. This is more of a "deploy your own stamp" model, less a "local" model.

    • gpm 5 hours ago

      > or even a single socket Epyc system with >1TB of RAM

      How many tokens/second would this likely achieve?

      • kachapopopow 2 minutes ago

        around 1 by the time you try to do anything useful with it (>10000 tokens)

    • refulgentis 7 hours ago

      I write a local LLM client, but sometimes, I hate that local models have enough knobs to turn that people can advocate they're reasonable in any scenario - in yesterday's post re: Kimi k2, multiple people spoke up that you can "just" stream the active expert weights out of 64 GB of RAM, and use the lowest GGUF quant, and then you get something that rounds to 1 token/s, and that is reasonable for use.

      Good on you for not exaggerating.

      I am very curious what exactly they see in that, 2-3 people hopped in to handwave that you just have it do agent stuff overnight and it's well worth it. I can't even begin to imagine unless you have a metric **-ton of easily solved problems that aren't coding. Even a 90% success rate gets you into "useless" territory quick when one step depends on the other, and you're running it autonomoously for hours

      • segmondy 5 hours ago

        I do deepseek at 5tk/sec at home and I'm happy with it. I don't need to do agent stuff to gain from it, I was saving to eventually build out enough to run it at 10tk/sec, but with kimi k2, plan has changed and the savings continue with a goal to run it at 5 tk/sec at home.

        • fzzzy 5 hours ago

          I agree, 5 tokens per second is plenty fast for casual use.

          • overfeed an hour ago

            Also works perfectly fine in fire-and-forget, non-interactive agentic workflows. My dream scenario is that I create a bunch of kanban tickets and assign them to one or more AI personas[1], and wake up to some Pull Requests the next morning. I'd me more concerned about tickets-per-day, and not tk/s as I have no interest in watching the inner-workings of the model.

            1. Some more creative than others, with slightly different injected prompts or perhaps even different models entirely.

          • refulgentis 5 hours ago

            Cosign for chat, that's my bar for usable on mobile phone (and correlates well with avg. reading speed)

    • tuananh 2 hours ago

      looks very much usable for local usage.

  • handzhiev 5 hours ago

    I tried it a couple of times in comparison to Claude. Kimi wrote much simpler and more readable code than Claude's over-engineered solutions. It missed a few minor subtle edge cases that Claude took care of though.

  • nathan_compton 4 hours ago

    The first question I gave it (a sort of pretty simple recreational math question I asked it to code up for me) and it was outrageously wrong. In fairness, and to my surprise, OpenAI's model also failed with this task, although with some prompting, sort of got it.

  • airstrike 4 hours ago

    Claude what? Sonnet? 3.7? 3.5? Opus? 4?

  • moffkalast 7 hours ago

    Still pretty good, someone with enough resources could distil it down to a more manageable size for the rest of us.

ozgune 8 hours ago

This is a very impressive general purpose LLM (GPT 4o, DeepSeek-V3 family). It’s also open source.

I think it hasn’t received much attention because the frontier shifted to reasoning and multi-modal AI models. In accuracy benchmarks, all the top models are reasoning ones:

https://artificialanalysis.ai/

If someone took Kimi k2 and trained a reasoning model with it, I’d be curious how that model performs.

  • Alifatisk 2 hours ago

    Why hasn’t Kimis current and older models been benchmarked and added to Artificial analysis yet?

  • GaggiX 8 hours ago

    >If someone took Kimi k2 and trained a reasoning model with it

    I imagine that's what they are going at MoonshotAI right now

satvikpendem 7 hours ago

This is not open source, they have a "modified MIT license" where they have other restrictions on users over a certain threshold.

    Our only modification part is that, if the Software (or any derivative works
    thereof) is used for any of your commercial products or services that have
    more than 100 million monthly active users, or more than 20 million US dollars
    (or equivalent in other currencies) in monthly revenue, you shall prominently
    display "Kimi K2" on the user interface of such product or service.
  • diggan 7 hours ago

    That seems like a combination of Llama's "prominently display “Built with Llama”" and "greater than 700 million monthly active users" terms but put into one and masquerading as "slightly changed MIT".

  • kragen 7 hours ago

    I feel like those restrictions don't violate the OSD (or the FSF's Free Software Definition, or Debian's); there are similar restrictions in the GPLv2, the GPLv3, the 4-clause BSD license, and so on. They just don't have user or revenue thresholds. The GPLv2, for example, says:

    > c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.)

    And the 4-clause BSD license says:

    > 3. All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by the organization.

    Both of these licenses are not just non-controversially open-source licenses; they're such central open-source licenses that IIRC much of the debate on the adoption of the OSD was centered on ensuring that they, or the more difficult Artistic license, were not excluded.

    It's sort of nonsense to talk about neural networks being "open source" or "not open source", because there isn't source code that they could be built from. The nearest equivalent would be the training materials and training procedure, which isn't provided, but running that is not very similar to recompilation: it costs millions of dollars and doesn't produce the same results every time.

    But that's not a question about the license.

    • mindcrime 3 hours ago

      It may not violate the OSD, but I would still argue that this license is a Bad Idea. Not because what they're trying to do is inherently bad in any way, but simply because it's yet another new, unknown, not-fully-understood license to deal with. The fact that we're having this conversation illustrating that very fact.

      My personal feeling is that almost every project (I'll hedge a little because life is complicated) should prefer an OSI certified license and NOT make up their own license (even if that new license is "just" a modification of an existing license). License proliferation[1] is generally considered a Bad Thing for good reason.

      [1]: https://en.wikipedia.org/wiki/License_proliferation

      • wongarsu 6 minutes ago

        Aren't most licenses "not fully understood" in any reasonable legal sense? To my knowledge only the Artistic License and the GPL have seen the inside of a court room. And yet to this day nobody really knows how the GPL works with languages that don't follow C's model of a compile and a link step. And the boundaries of what's a derivative work in the GPL are still mostly set by convention, not a legal framework.

        What makes us comfortable with the "traditional open source licenses" is that people have been using them for decades and nothing bad has happened. But that's mostly because breaking an open source license is rarely litigated against, not because we have some special knowledge of what those licenses mean and how to abide by that

  • alt187 3 hours ago

    What part of this goes against the four fundamental freedoms? Can you point at it?

    • simonw 2 hours ago

      "The freedom to run the program as you wish, for any purpose (freedom 0)."

      Being required to display branding in that way contradicts "run the program as you wish".

      • weitendorf 2 minutes ago

        You are still free to run the program as you wish, you just have to provide attribution to the end user. It's essentially CC BY but even more permissive, because the attribution only kicks in once when specific, relatively uncommon conditions are met.

        I think basically everybody considers CC BY to be open source, so a strictly more permissive license should be too, I think.

      • a2128 11 minutes ago

        Being required to store the GPL license notice on my hard drive is contradicting my wishes. And I'm not even earning $20 million US dollars per month off GPL software!

    • Alifatisk 3 hours ago

      Exactly, I wouldn’t mind adding that text on our service if we made 20m $, the parent made it sound like a huge clause

      • tonyhart7 an hour ago

        Yeah, its fair for them if they want a little bit credit

        nothing gucci there

  • moffkalast 7 hours ago

    That's basically less restrictive than OpenStreetMap.

  • drawnwren 3 hours ago

    It's silly, but in the LLM world - "open source" is usually used to mean "weights are published". This is not to be confused with the software licensing meaning of "open source".

    • simonw 2 hours ago

      The more tasteful corners of the LLM world use "open weights" instead of "open source" for licenses that aren't OSI.

  • echelon 7 hours ago

    > This is not open source

    OSI purism is deleterious and has led to industry capture.

    Non-viral open source is simply a license for hyperscalers to take advantage. To co-opt offerings and make hundreds of millions without giving anything back.

    We need more "fair source" licensing to support sustainable engineering that rewards the small ICs rather than mega conglomerate corporations with multi-trillion dollar market caps. The same companies that are destroying the open web.

    This license isn't even that protective of the authors. It just asks for credit if you pass a MAU/ARR threshold. They should honestly ask for money if you hit those thresholds and should blacklist the Mag7 from usage altogether.

    The resources put into building this are significant and they're giving it to you for free. We should applaud it.

    • Intermernet 31 minutes ago

      Yep, awesome stuff. Call it "fair source" if you want to. Don't call it open source. I'm an absolutist about very few things, but the definition of open source is one of them. Every bit of variation given in the definition is a win for those who have ulterior motives for polluting the definition. Open source isn't a vague concept, it's a defined term with a legally accepted meaning. Very much like "fair use". It's dangerous to allow this definition to be altered. OpenAI (A deliberate misnomer if ever there was one) and friends would really love to co-opt the term.

    • teiferer 5 hours ago

      > small ICs

      The majority of open source code is contributed by companies, typically very large corporations. The thought of the open source ecosystem being largely carried by lone hobbyist contributors in their spare time after work is a myth. There are such folks (heck I'm one of them) and they are appreciated and important, but their perception far exceeds their real role in the open source ecosystem.

      • wredcoll 5 hours ago

        I've heard people go back and fortg on this before but you seem pretty certain about it, can you share some stats so I can see also?

    • satvikpendem 5 hours ago

      That's great, nothing wrong with giving away something for free, just don't call it open source.

exegeist 4 hours ago

Technical strengths aside, I’ve been impressed with how non-robotic Kimi K2 is. Its personality is closer to Anthropic’s best: pleasant, sharp, and eloquent. A small victory over botslop prose.

fzysingularity 7 hours ago

If I had to guess, the OpenAI open-source model got delayed because Kimi K2 stole their thunder and beat their numbers.

  • irthomasthomas 7 hours ago

    Someone at openai did say it was too big to host at home, so you could be right. They will probably be benchmaxxing, right now, searching for a few evals they can beat.

    • johnb231 3 hours ago

      These are all "too big to host at home". I don't think that is the issue here.

      https://github.com/MoonshotAI/Kimi-K2/blob/main/docs/deploy_...

      "The smallest deployment unit for Kimi-K2 FP8 weights with 128k seqlen on mainstream H200 or H20 platform is a cluster with 16 GPUs with either Tensor Parallel (TP) or "data parallel + expert parallel" (DP+EP)."

      16 GPUs costing ~$30k each. No one is running a ~$500k server at home.

      • pxc 2 hours ago

        I think what GP means is that because the (hopefully) pending OpenAI release is also "too big to run at home", these two models may be close enough in size that they seem more directly comparable, meaning that it's even more important for OpenAI to outperform Kimi K2 on some key benchmarks.

      • ls612 an hour ago

        This is a dumb question I know, but how expensive is model distillation? How much training hardware do you need to take something like this and create a 7B and 12B version for consumer hardware?

pxc 3 hours ago

So far, I like the answer quality and its voice (a bit less obsequious than either ChatGPT or DeepSeek, more direct), but it seems to badly mangle the format of its answers more often than I've seen with SOTA models (I'd include DeepSeek in that category, or close enough).

jug 7 hours ago

I like new, solid non-reasoning models that push the frontier. These still have nice use cases (basically anything where logic puzzles or STEM subjects don't apply) where you don't want to spend cash on reasoning tokens.

data_maan 8 hours ago

"Open source" lol

Open-weight. As usual, you don't get the dataset, training scripts, etc.

  • CaptainFever 7 hours ago

    It's not even open-weight. It's weight-available. It uses a "modified MIT license":

        Modified MIT License
        
        Copyright (c) 2025 Moonshot AI
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the “Software”), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
        Our only modification part is that, if the Software (or any derivative works
        thereof) is used for any of your commercial products or services that have
        more than 100 million monthly active users, or more than 20 million US dollars
        (or equivalent in other currencies) in monthly revenue, you shall prominently
        display "Kimi K2" on the user interface of such product or service.
    • mitthrowaway2 7 hours ago

      This seems significantly more permissive than GPL. I think it's reasonable to consider it open-weight.

    • MallocVoidstar 7 hours ago

      4-clause BSD is considered open source by Debian and the FSF and has a similar requirement.

  • mistercheph 7 hours ago

    Wont happen under the current copyright regime, it is impossible to train SOTA without copyrighted text, how do you propose distributing that?

    • irthomasthomas 7 hours ago

      List the titles.

      • mixel 7 hours ago

        But probably they don't have the rights to actually train on them and that's why they do not publish the list. Otherwise it may be laziness who knows

awestroke 8 hours ago

This is the model release that made Sam Altman go "Oh wait actually we can't release the new open source model this week, sorry. Something something security concerns".

Perhaps their open source model release doesn't look so good compared to this one

bhouston 6 hours ago

Impressive benchmarks!

jacooper 3 hours ago

The problem with Chinese models is finding decent hosting. The best you can find right now for kimi k2 is only 30 tps, not great.

38 5 hours ago

The web chat has extremely low limits FYI. I ran into the limit twice before getting a sane answer and gave up

brcmthrowaway 8 hours ago

Is Kimi the new deep seek?

  • Alifatisk 3 hours ago

    It kinda feels like it, but Moonshots delivery has been like this before aswell, it was just now their new release got way more highlight than usual. When they released Kimi k1.5, those bench were impressive at the time! But everyone was busy with Deepseek v3 and QwQ-32B

DataDaemon 7 hours ago

Oops, China is leading with AI, when the Nasdaq investors check their AI investments?