Qwen3.8-Max: A New Bar for Coding and Cowork

(qwen.ai)

729 points | by ai2027 11 hours ago ago

367 comments

  • toshinoriyagi 10 hours ago ago

    They've also announced Qwen3.8-27B being released open-weight next week. Qwen3.6-27B is widely regarded as one of the best local models, especially since nothing else comes close to it, that isn't benchmaxxed, without being significantly larger. If 3.8 truly improves upon it that would be awesome.

    • nozzlegear 9 hours ago ago

      Qwen3.6-35B is my daily driver for AI, and what convinced me to cancel my Claude subscription back in April. The Qwen3.6 line is easily the best local model I've tried, and I've tried a lot. I've got it diligently grinding away on my laptop right now, reviewing and fixing some bugs in my F# code.

      • trollbridge 7 hours ago ago

        Qwen-3.6-35B-A3B was our "gateway drug" into switching our organisation to agent/harness-first coding.

        Particularly, I had one team member who was extremely sceptical of AIs/LLMs/harnesses and refused to use them. One day he said "Well, I have an RTX 5090 doing nothing... should I try to get something up on it?" and a few minutes later he had 3.6-35B loaded up, running OpenCode.

        It continues to be a workhorse to this day, running on both my local Mac for various types of jobs, an AMD R9700 at the office, and said teammember still uses it on his 5090, although in practical terms we do a lot more with DS-V4-Flash-0731 these days.

        • websap 5 hours ago ago

          What!? You are skeptical of AI but will go through the manual process of hosting a model that’s less than frontier intelligence (talking about Qwen 3.6)? Anti-AI folks are always odd to me

          • badsectoracula 5 hours ago ago

            A local model needs 0 investment and 0 commitment, takes literal minutes to get started (especially if you have someone who is into that stuff showing you the ropes) and if you end up disliking the experience of using AI you can just `rm -fr` it and forget the whole thing existed.

            • websap 3 hours ago ago

              Needs 0 investment and 0 committment?

              - You at least need a capable machine, so that's not 0 monetary investment. - You need to spend at least an hour decicding between ollama, llamacp, mlx, etc. - You need to find the correct quantized version of the model that works for you based on the architecture. - You need to figure out the correct context window size to get reasonable performance. - You need to setup a harness that works against your model - You might need to setup additional websearch tools, image tools, etc since harnesses like pi don't come with the model. Ofc you can't use codex and claude code, because those aren't opensource and you are anti-AI.

              Or, you could sign up for Opencode for $10 and just be productive.

              I'm particularly calling out the hypocrisy of the original comment. Being Anti-AI, and then spending hours on setting up a less than frontier AI model.

              • jurgenburgen 37 minutes ago ago

                > Or, you could sign up for Opencode for $10 and just be productive.

                You forgot the step before where you spend months waiting for security to vet it, legal to sign off and procurement to approve it.

                Or you could use hardware your team has lying around. Everyone isn’t working on cloud-hosted CRUD APIs.

              • topranks 31 minutes ago ago

                You might be anti-ai in the sense you aren’t comfortable with all your data being shipped back and forth to a third party.

              • dahrkael 3 hours ago ago

                install LM Studio, download the automatically selected quant based on your hardware, start a conversation with the automatic context size. 10 minutes at best and zero effort

              • OtomotO 3 hours ago ago

                > You at least need a capable machine, so that's not 0 monetary investment

                It is 0 monetary investment if I already have said machine lying around doing nothing.

                Which is exactly the story OP talked about.

                • enraged_camel an hour ago ago

                  But most people don't have an RTX 5090 lying around, so the story doesn't apply to them, right?

                  • OtomotO an hour ago ago

                    Correct. If the premise doesn't hold, it's ex falso quodlibet for anyone.

              • noodletheworld 3 hours ago ago

                > You need to setup a harness that works against your model - You might need to setup additional websearch tools, image tools, etc since harnesses like pi don't come with the model

                Pi has a nice guide on it (https://pi.dev/docs/latest/llama-cpp) and it is really not that hard.

                How is that hypocrisy? Self hosting is somehow anti AI? Its not anti AI. Its literally using AI!

                …and honestly, at a higher technical level than slapping your wallet against a token provider and running prompts in a hosted sandbox you can't even see the prompts in.

            • jiggawatts 5 hours ago ago

              This is the diametric opposite of the rent-vs-buy scenario that this entails.

              Local: You need to invest $thousands into GPU and/or very-high-end CPU+Memory hardware.

              Vendor: You can use any existing device, even a phone or tablet. A very low-end laptop is fine.

              > takes literal minutes to get started

              Local: Typical scenario is hours just to download the software, the model weights, and then faffing around with CUDA and matching your GPU drivers.

              Vendor: Free-tier available instantly on a web URL. Even local agents have free tiers from multiple vendors. Install is a single command and/or download and "next,next,next,finish" wizard that takes ~1 minute.

              > you can just `rm -fr` it and forget the whole thing existed.

              I'm still cleaning up multi-GB model weights floating around in hidden subdirectories under my user profile from months ago when I was experimenting with local models!

              Meanwhile I simply... stopped using Gemini. That was the entire process: I no longer actively use it. They stopped billing me for my token usage, because it is now zero. That's... it.

              You have it totally backwards.

              • palata 4 hours ago ago

                > I'm still cleaning up multi-GB model weights floating around in hidden subdirectories under my user profile from months ago when I was experimenting with local models!

                Are you trying to say that local models are hard to use because... you're having issues handling files properly? I am not sure I get the argument.

                I get the rest of the comment: local models require an investment upfront, and it is less convenient. It doesn't say that it is not cheaper, though.

                • gpugreg 2 hours ago ago

                  > you're having issues handling files properly?

                  I guess they were using ollama, which does not tell you where it puts the models it downloads.

                  • accrual 8 minutes ago ago

                    Filelight / ncdu are my friends for finding random 30GB directories containing cached models.

              • ahartmetz 4 hours ago ago

                It took me about three hours total to set up a local model. I already have a GPU and I have fiber for the download. llama.cpp is not difficult to compile and has many backends. It can run parts of the model on different backends, like in the common case that the GPU doesn't have enough VRAM for everything. There are many step-by-step guides available.

              • leansensei 4 hours ago ago

                Huh what? Qwen3.5-35B-A3B runs just fine with maximum context, on an RTX SUPER 12 GB, with offloading of some expert layers to DDR4-3200.

                Same story on an RTX 4060 Ti 16 GB. MTP is a serious boost to tg.

                Downloading the model is a simple hf command that HuggingFace's web UI even gives you.

                llama.cpp is trivial to use, and so is llama-swap, if you want to use other models too.

                If you don't know what arguments to run it with, you download ggrun and use that.

                Local LLMs are incredibly capable and don't need expensive hardware. A $500 GPU will do. Or even cheaper.

                This is all trivial.

                • Anonyneko an hour ago ago

                  Full model or a 4-bit quant? I have a 5090 and I'm not sure whether I should use a quant that fits within the VRAM or a much bigger version where I'd have to offload a lot to 64GB RAM and a beefy CPU (but still a CPU)

                • tsss 2 hours ago ago

                  RTX Super 12GB costs $700. An openrouter account costs nothing.

                  • freehorse 2 hours ago ago

                    A lot of people already have 12GB+ GPUs lying around for playing games, doing video editing, etc. I would not get a GPU or mac just to run LLMs personally, but if one wants to get such a device for other tasks too, it may make sense to eg choose a slightly higher (v)RAM variant if they want to run some bigger models. Then what you pay for the local llms is just the difference.

          • cpburns2009 30 minutes ago ago

            This largely describes me. I'm skeptical of AI in that it's capabilities, while very impressive, are vastly oversold and overblown. Being skeptical of AI is not being "Anti-AI". That's largely the AI data centers are using up all the water and electricity types.

          • vrganj 5 hours ago ago

            Maybe you're anti-AI because you're really anti-outsourcing your thinking to some remote corporation you don't control?

            That's one of my main issues with AI anyways, the thought of having all my data go through some sketchy foreign (to me) entity with questionable motives and under a questionable regime.

            Local AI solves for all of those.

            • websap 3 hours ago ago

              I'm not against AI. I'm calling out the hypocrisy in the comment. I'm anti-AI, but will spend hours trying to setup a local model, instead of just getting access to frontier intelligence in 15 mins, and actually getting useful work done.

              If you're learning about model inference, then it's a different and you are definitely not anti-AI in that case.

              • adornKey 3 hours ago ago

                I think learning how to set up a local AI now requires less time than learning about potential pitfalls of token-plans and processing payments in corporate environments.

                It's not that billing is complicated, but learning to set up a local AI is a lot more useful and more rewarding.

      • pettijohn 9 hours ago ago

        35B MoE is certainly a good and fast local model. I find 27B dense to be quite a bit smarter, so I daily drive that. I wish there was a ~100B MoE with maybe 10B active. It would be super smart and fast!

        • mattnewton 9 hours ago ago

          There was a 3.5 122B 10A release -

          https://huggingface.co/Qwen/Qwen3.5-122B-A10B

          • kanemcgrath 9 hours ago ago

            I tried it for a bit, and It was not really worth its size. It got swept up in all the other AI news recently, but laguna s 2.1 I think is the best ~100B moe model right now

            • nozzlegear 8 hours ago ago

              I didn't mention it above, but Laguna S is my other favorite model. I use Qwen a lot more, it's smaller and faster, but I like to switch to Laguna when I feel like I need a "heavy hitter" for certain huge or complex tasks.

              • tommica 8 hours ago ago

                What on earth hardwares do you guys have to be able to run 100gb models locally?! That's crazy! I'm here struggling to even get 27b models to run in somewhat usable way

                • nozzlegear 8 hours ago ago

                  Haha I'm on an Mac Studio with an M1 Ultra, 64gb ram. I bought it when it first came out, it just happens to be good for local LLMs. I have to use a smaller quant of Laguna S though (I think 4-bit? Not at my machine to check), as 8-bit and full size definitely don't fit in the 64gb I have.

                  • tommica 7 hours ago ago

                    brb, going to see if 2nd hand mac studios are available!

                  • lcnPylGDnU4H9OF 8 hours ago ago

                    Yeah, a good rule of thumb is that the weights take up ~100% of the size of the model, so 100B bytes (8-bit quant) would be, well, 100GB and a 4-bit quant would be half that.

                    • tommica 7 hours ago ago

                      Oh, that is a useful rule to know! Thanks!

                • numpad0 4 hours ago ago

                  Yeah, here I am sitting deeply deeply deeply regretting not buying couple CMP 170HX at $200 or $350, knowing I could just flip them ethically at purchase price if nothing came of it... I could have just casually built a 128GB dual A100 local AI monster

                  • jimmySixDOF an hour ago ago

                    I'm working with a lab that has a few Ampere GPUs on infiniband and they are just not compatible with the latest quants and vLLM updates. FP8 is about as low as you can go.

                • sznio 6 hours ago ago

                  quantized + offload

                  I have an RX 6700 XT with 12gb vram and 64gb system ram. running dense models like 27b is difficult, but i can run IQ4/IQ5 qwen 122b-a10b or 35b-a3b at ~20tok/s

                  • TonyStr 2 hours ago ago

                    IQ4 qwen 122b-a10b would mean 61GB total size and 5GB active, so about 5GB of the model loaded into GPURAM plus any generated context, and 61GB of weights loaded into system RAM? I don't know if that math is correct, but does that run well? Wouldn't that only leave 3GB of system RAM?

                • sarjann 6 hours ago ago

                  dgx spark, nvfp4 so I have spare room for KV cache (context)

                • colordrops 6 hours ago ago

                  MoE models can use system memory along with a GPU.

            • mattnewton 8 hours ago ago

              I agree. 27b dense really did seem like the sweet spot.

        • antman 6 hours ago ago

          A 35 A3B as smart as previous gen 27B would be a sweet point

        • traceroute66 5 hours ago ago

          > 35B MoE is certainly a good and fast local model. I find 27B dense to be quite a bit smarter

          Isn't that just the definition of MoE vs dense ?

        • wickedsight 6 hours ago ago

          I use 27B in plan mode and 35B MoE in act mode. I noticed that is the best balance for me for consistent tool calls and intelligent planning. Takes some time to switch, but it's worth it for me.

        • nozzlegear 9 hours ago ago

          I've heard 27B is smarter! I tried it some time ago but couldn't get it working with my oMLX. I need to try it again.

          • mattnewton 8 hours ago ago

            Honestly the 27b dense one punches way above its weight in a lot of domains, especially coding in my testing, so I think you will probably be disappointed.

          • npodbielski 7 hours ago ago

            In my case I would say they are comparable but moe models are looping and getting lost a lot more than dense models.

            On the other hand having 90t/s with any local model is nice and Pi with loop police extension can prevent looping a lot.

      • quanto an hour ago ago

        Is your Qwen3.6 locally run on your laptop? What kind of tokens/s are you getting from your laptop GPU?

        • saagarjha an hour ago ago

          I have Qwen3.6 35B-A3B on my laptop and it does 60 tokens/s

          • quanto an hour ago ago

            Could you share the specs of your laptop?

      • btbuildem 24 minutes ago ago

        I'm on the verge over here, the new Anthropic models have been a disappointment. I've tried the A3B variant, but had mixed results. What do you use as the coding agent, and have you heavily customized your workflows?

      • apexalpha 6 hours ago ago

        It was for me too but the new deepseek pricing is too good to ignore for now.

        I honestly think that with my electricity prices running qwen 36B myself is more expensive than hitting the cache rate at deepseek.

        • sparkling 4 hours ago ago

          Can you elaborate on DeepSeek (deepseek-v4-flash, i assume?). What does your typical usage pattern look like and what is your weekly/monthly spend?

          I gave it a try for a few days (pi + openrouter + deepseek-v4-flash via deepinfra) and ended up paying ~$18 for rather light usage. Yes it's still cheap, yes it's fast, but i feel i would still get a better deal with a Claude subscription plan.

          • Bayart 15 minutes ago ago

            Going directly though DeepSeek's API and hitting all day long with light/medium tasks I'm at $5/month. That's with pretty vanilla ohmypi.

          • maattdd 4 hours ago ago

            DeepSeek without OpenRouter is wayyyy cheaper

            • sparkling 4 hours ago ago

              Is it? OpenRouter shows DeepInfra being cheaper than DeepSeek directly

              https://openrouter.ai/deepseek/deepseek-v4-flash-20260731#pr...

              • thecopy 4 hours ago ago

                I agree with parent. OpenRouter might be cheaper list-price, but i have been using 10$ on DS platform since April/May, still have 2$ left. Using OpenRouter i depleted the same dollar-amount in a 1-2 weeks with same usage pattern. No idea why.

                • sparkling 4 hours ago ago

                  What does your usage look like?

              • nimoday 2 hours ago ago

                DeepInfra's Cache Read is 6.5 times more expensive than DeepSeek.

                • miroljub an hour ago ago

                  And in many scenarios, cache hits are 99% of tokens, so the price difference in caching really adds up quickly.

              • maattdd 4 hours ago ago

                Interesting. My anecdotal experience is that it is.

      • cicko 3 hours ago ago

        With laptop being ...?

      • razster 8 hours ago ago

        I would recommend looking into Ornith1.0 - it's using Qwen3.6 35B-A3B and excels in coding, at least for my coding needs, Python, web-dev, SQL scripting and some C#. Using Pi harness.

      • mraza007 7 hours ago ago

        I have been using Qwen3.6-35B-A3B as my daily driver as well and its been phenomenal when it comes to coding

        • coverband 7 hours ago ago

          How do you use a 72GB model as your daily driver locally?

          • anon373839 5 hours ago ago

            Apple Silicon. But: there's no need to use the FP16 version. At 8-bit precision the quality loss is almost imperceptible. That cuts the footprint to 36GB. Which is great for a 64GB Mac, because you have room for plenty of context. 6-bit also works nicely at 26GB + context.

            You want to use the newer quantization formats like Unsloth's UD quants or oQe, where the weights are selectively quantized using a calibration dataset so that important weights are left at/closer to full precision.

          • sznio 6 hours ago ago

            use a quantized version. since it's MoE, what matters is that the 3b parameters that are used for every token fit in gpu vram, the rest can stay in system ram. really great if you don't have unified memory.

          • chmod775 7 hours ago ago

            At 4 bit it easily fits in 32GB. That's what most people use.

      • westpfelia 5 hours ago ago

        I'm a big ole noob when it comes to local AI. What are you using for a harness? Or platform to interact with it?

        • ch_sm 3 hours ago ago

          you can try ollama, omlx or llama.cpp for instance to download a model and get an inference server running locally. They expose „open ai compatible“ endpoints, so you can configure almost any harness to use them.

      • neumann 9 hours ago ago

        compared to claude - how 'fast' is it in terms of throughput on your laptop?

        • brucehoult 9 hours ago ago

          On my SpacemiT K3 SBC with 32GB RAM (where models run on the eight A100 RISC-V cores with 1024 bit vectors) doing the same task I got 5, 5.8, 6.5 tok/s using gemma-4-26B-A4B-it-QAT-Q4_0.gguf, Qwen3.6-35B-A3B-Q4_K_M.gguf, Qwen3.5-35B-A3B-Q4_K_M.gguf. The corresponding dense models are more in the 2.5-3 tok/s range.

          Kind of slow, but using only 14W of electricity so the Wh per task is twice as good as using my i9-13900 laptop with 4060 GPU.

        • syntaxing 9 hours ago ago

          I use it with a strix halo server. 35B runs stupidly fast. 27B is about 700 TPS prefill and 30 TPS token generation. Which interestedly is about what Kimi K3 gives me depending on provider.

          • dionian 9 hours ago ago

            what hardware do you use or recommend for this? never heard of it until today.

            • Zetaphor 8 hours ago ago

              Strix Halo is the unified memory platform from AMD. Similar to the DGX Spark from NVIDIA or the M series Macs.

              I personally have the Framework Desktop, but there's also systems from other brands like Bosgame

              • vrganj 5 hours ago ago

                You can also get it in a laptop form factor that feels like a MBP with a nicer keyboard if you get an HP Zbook G1A!

                Huge fan of that thing, it's th e Linux MBP I've always wanted.

                • Zetaphor an hour ago ago

                  While the laptop option is nice, for an inference server you're probably going to want the desktop form factor as it has significantly more thermal overhead and thus better performance. In the desktop models most of the internal volume is a gigantic heatsink

            • leansensei 4 hours ago ago

              RTX 4060 and above. Ideally RTX 50 Series, because you can run NVFP4-quantized GGUFs that give you better prefill AND better quality.

        • Groxx 7 hours ago ago

          On an 8GB GPU and 32GB laptop: ~5 words/s while running in Qubes via ollama with completely default settings (I don't have an install at the moment that'll tell me tokens/s). Not exactly a highly tuned setup, but it's a ballpark at least :)

          Tolerable and usable for some things, though thinking makes it take about a minute to reply in many cases. But getting this kind of thing to run on 8GB of VRAM is the main benefit of the mix-of-experts setup: it can do partial GPU loading and get a ton better throughput than a similarly-sized dense model (like 5-10x, sometimes more).

        • nozzlegear 9 hours ago ago

          It's pretty fast, faster than I could type anyway, but not as fast as Claude of course. My oMLX dashboard says I get about 45 tokens per second from the Qwen model I'm running (I host it on my M1 Mac Studio, not on my laptop).

      • kumarvvr 4 hours ago ago

        On what hardware do you run the model locally, if so?

        • anon373839 4 hours ago ago

          Not the GP, but I run this model as daily driver too. It runs great on a Macbook Pro 64GB (M3 Max). Token generation speed can be about 100 tokens/sec with multi-token prediction, although it depends on the context. Worst case speed is around 50 tokens/sec.

          The weaker point is prompt prefill, which starts at 1,400 tokens/sec but decreases significantly at high contexts. That said, for agentic scenarios, if you're using a harness that doesn't needlessly bust the cache, it doesn't feel slow.

          I really hope they release a Qwen 3.8 35B, although the lack of a mention seems ominous.

      • bckr 7 hours ago ago

        What are the specs of your laptop and what tokens per second do you get?

      • ufish235 9 hours ago ago

        What laptop?

        • nozzlegear 9 hours ago ago

          It's just a MacBook Air with an M4, cheap and nothing special. I host Qwen on my Mac Studio, an M1 with 64gb ram. The model uses around 20-25gb ram depending on what it's doing.

          • brailsafe 7 hours ago ago

            I wonder if I could get this running on my 48gb M4 Pro. Haven't been able to load anything beyond 27B

    • throwaw12 5 hours ago ago

      Qwen3.8-Max is the first in Qwen-Max series to be open-weight as well.

      Kimi K3, GLM 5.2 and now Qwen3.8-Max - open weight models.

      DeepSeek V4 Flash outperforming Gemini 3.1 pro, probably DeepSeek V4 Pro update is also coming soon

      Chinese labs are cooking very hard. US closed weight labs are probably hard time to resist not calling Washington DC for more AI regulations

      • badsectoracula 5 hours ago ago

        Kimi K3 is more like "weights available" in that you can download and use them but it is under a custom license that has a bunch of limitations where you have to pay Moonshot for doing some stuff. GLM 5.2 on the other hand is plain old MIT.

        Not sure how Qwen3.8-Max is going to be licensed, hopefully it'll be Apache like the smaller ones.

        • pama 5 hours ago ago

          You can do whatever you want with the model within your own organization. If you use it commercially—either as a model-as-a-service business or in a very large-scale product—you should check the additional license terms, which go beyond MIT. My interpretation is that Moonshot cares about the exact inference behavior and accurate representation of their model or derivatives, and perhaps also about capturing some additional value despite their own GPU limitations, so the extra license terms focus on those large-scale commercial deployments.

          • user43928 4 hours ago ago

            Considering that very few orgs are going to be able to host a 3T parameter model internally, chances are most deployments would be subject to these restrictions and require a separate license from Moonshot.

            • pama 9 minutes ago ago

              Any US organization can rent compute.

    • c16 6 hours ago ago

      Some advice I got from another HN Mac user was to run local models in energy saver mode. You'll get slightly reduced tokens, but the laptop won't overheat and the fans won't go wild.

      • leansensei 4 hours ago ago

        And if you're running it on a dGPU, power limit it, because you lose very little in terms of token generation performance, since it's memory-bound.

      • fragmede 6 hours ago ago

        Oh. I've been using an icepack under my laptop to keep mine cool. I'm watching it with llamatop to see if the GPU is actually active or not, aw activity monitor wasn't showing me what I wanted.

        • hooli_gan 5 hours ago ago

          That's exactly how i fried a laptop. The condensation killed it.

    • icelancer 10 hours ago ago

      This is what I've been waiting for. We are still using fine-tuned deployments of Qwen3.6-27B with a lot of success but could use a bump in intelligence. Here's hoping.

      • magicalwh 6 hours ago ago

        How and where do you finetune it?

        • leansensei 4 hours ago ago

          Easy to do with Unsloth Studio.

    • foft 4 hours ago ago

      Really awesome. Though I wish they'd do a dense 48B, 60B or 72B.

      There seems to be quite a gap between the small ones and the enormous ones these days.

    • bertili 3 hours ago ago

      The 27B have many more active parameters than much bigger models such as DS4Flash, MiniMax etc, which makes it punch above its tiny weight. A great fit for a 5090 in a closet for meat-and-potatoes, kind of work.

    • iagooar 7 hours ago ago

      Having invested in a machine with 128GB of RAM, I would love seeing something a bit larger than 27B / 35B, possibly a 54B dense model or 70B MoE would be much closer to the Qwen 3.8 Max experience.

      • hadlock 5 hours ago ago

        All of us with a 96gb rtx 6000 would love to see a 70b moe. Maybe they are waiting for OpenAI and Anthropic to IPO so they can short their stock and release. Local LLM is going to get very interesting in the next 2 years.

    • mathieudombrock 9 hours ago ago

      Qwen 3.6 27b has been the sweet spot for me in terms of local models. I've had good luck using it with Pi harness. Looking forward to this.

      • cybertim 3 hours ago ago

        I also "evolved" into 27b (q8 unsloth) and pi.dev (tried many combinations) feels for me the same as opus 4.5 that i use at work, faster even (using 2x 3080 20GB gives me 60-80tk/s). Though you do need to feed it more details up front (about what exactly you are planning to do and a good written skill.md) but I work that way anyways, im hyped for 3.8

    • SillyUsername 43 minutes ago ago

      Do you have a news source for 3.8 27B pls?

    • ksec 6 hours ago ago

      For those of us who don't have the time to follow closely, Qwen3.6-27B being Open Source and Open Weight, what level is this compared to other Western paid version?

      Just so that we know what 3.8 would be like.

      I currently have about 150 Tabs of Antirez posting on AI and running local model I haven't had the time to read. And there are probably some prerequisite reading or other research in between as well. I just wish there are some very high level overview and news coverage on all these.

      • wickedsight 6 hours ago ago

        > what level is this compared to other Western paid version?

        IMHO this is a difficult question to answer. Part of the power of paid models comes from the software supporting it. With local models, you have tons of workflows that can severely influence the quality of the result.

        In my personal experience, the SOTA models are way more consistent and can handle more complex questions. Part of that is (probably) because I don't let my local model access the internet, while paid models do use the internet to look at docs etc.

        • InsideOutSanta 4 hours ago ago

          You absolutely need to let models access the Internet if you want consistently good results. Pretty much any non-trivial task requires the model to do things like look up APIs, code examples, or existing discussions of a given topic.

    • XCSme 9 hours ago ago

      If they trained it well, and can do computer use, it will be a new era. Companies can keep PCs, put Qwen 3.8 27b on it and get rid of the employees, lol...

      • hippycruncher22 7 hours ago ago

        Yes let’s get rid of employees so no one is employed but somehow they can afford to buy my stuff

        • overfeed 6 hours ago ago

          It's the natural outcome of next-quarter short-termism. The board and C-suite will be fine (monetarily).

          • XCSme 2 hours ago ago

            I am surprised that they keep going with it, seeing how fast it improves and basically soon running themselves too out of business.

            What's even their end goal? Open source models make sense, if profit is not the target, but for OpenAI and the rest, once they achieve "AGI", don't they basically become useless?

    • yassa9 5 hours ago ago

      as much as im excited for it, sadly it gonna be one of the reasons to push ram prices higher

  • me551ah 4 hours ago ago

    This makes me wonder if AI companies even have a MOAT in the first place.

    All requests to an LLM are idempotent, for every API call you need to send it the entire conversation history so that it can process it. LLMs do not learn or remember anything, which makes it super easy for users to switch LLMs on the fly. Most popular AI frameworks, make this a one-liner change these days.

    And that makes me wonder if the trillion dollar valuations for OpenAI and Claude are even justified. Cause if that is justified, then Kimi, Qwen, Deepseek etc are also valued at a trillion dollars. Or all of them are worth a lot less. One of those statements is true.

    Also this makes me wonder if the next iteration of LLMs would be based on fine-tuning, where LLMs actually learn from your past behaviour so that it would grant some amount of stickiness to the product. OpenAI used to offer fine tuning runs for GPT-3.5, but they don't seem to do that anymore.

    • jcoder 3 hours ago ago

      > All requests to an LLM are idempotent, for every API call you need to send it the entire conversation history

      A more appropriate term is “stateless”. LLM responses are certainly not idempotent, as they are not even deterministic.

      • msdz 2 hours ago ago

        Which is why big labs have been working hard on making their harness not be stateless any longer:

        https://earendil.com/posts/session-portability/

        “Just take the session thread to another provider” might not be feasible anymore soon-ish.

      • jpgvm 33 minutes ago ago

        They can be deterministic. We did this at Groq, if you sent a request with exactly the same input token, seed and temperature value you would get precisely the same result every time.

        This is harder to do on other architectures that themselves aren't fully deterministic though.

        • Iolaum 3 minutes ago ago

          Was the temperature 0? Cause unless I understand it right, any non-zero temperature implies probabilistic next token prediction.

          You did mention, seed, which I haven't seen available anywhere else (in my limited experience) and it can explain a reproducible inference result, but I feel like this matches the "letter of the law" meaning of deterministic rather than the "spirit of the law".

      • DavidHaerer 2 hours ago ago

        According to [1] there is - unfortunately - increasingly more state in LLM sessions.

        1: https://earendil.com/posts/session-portability

      • qeternity an hour ago ago

        LLMs are, in theory, deterministic. Sampling is not intrinsic to LLMs.

        Greedy decoding a single batch in most libraries will give you mostly deterministic outputs. Higher batch sizes can increase variance.

        But all of this is down to CUDA and/or kernel implementation issues.

        • orbital-decay an hour ago ago

          It's a more or less solved problem (e.g. DeepSeek has batch-invariant kernels, vLLM also has reproducible outputs etc), with an obvious caveat that you need to lock your hardware setup, model snapshot, and inference stack if you want any useful reproducibility across longer time periods. It's up to specific providers to actually implement it to any extent, of course commercial providers are incentivized to do the opposite.

    • satvikpendem 2 hours ago ago

      Google figured this out with their paper from 2023, We have no moat and neither does OpenAI. The moat now is the harness and being able to recursively self improve from RLHF, a great example is how Grok used to be pretty bad but since SpaceX bought Cursor, they used that data to train Grok 4.5 which is now very competent at coding and even exceeds frontier models in certain benchmarks.

      https://www.semianalysis.com/p/google-we-have-no-moat-and-ne...

      • gizmodo59 2 hours ago ago

        Moat is not the harness. Harness itself is temporary until the models get better and slowly the code in harness will go down.

        Note that the biggest GPU providers in the world are the hyper scalers and even they couldn’t allocate more if you pay for it. Because the rich companies and well funded ones are gobbling them up to the point where if tomorrow a 5T model that smokes every other model in the world is released you just can’t afford inference.

        • vcryan an hour ago ago

          Agree. Harness can not be a moat. There are many open harnesses and they are at least on par with the providers ones. It looks like Anthropic/OpenAI's approach to vendor lock-in is not so much the inference or the harness it is functional integration across the individuals and teams in a company. I don't think this will be a moat either, but I think it's all they have outside of compute.

      • ListeningPie an hour ago ago

        And yet investment is continuing. What are they counting on?

    • credit_guy an hour ago ago

      They have 2 moats.

      The first is the compute. OpenAI and Anthropic secured huge amounts of compute, Google, Meta and xAI have their own huge datacenters. Now anyone can rent some cloud machines and start serving Kimi K3, but it's going to be impossible to get to a similar scale as the big 5 above. And inference has economies of scale: the more people you serve in parallel, the more efficient you are.

      The second is the data. By now (and maybe even by one year ago), all the data on the internet has been used for training. You need new data. The big AI companies sit on top of trillions or quadrillions of tokens that they have generated over the years. They can use that to train new models. That data is gold, and the proof is that SpaceX was happy to pay $60B to acquire Cursor.

      If you want to overtake the frontier labs, you have 2 options: use their models to generate synthetic data, and provide lots of (cheap, maybe below cost) inference to generate your own new data. The frontier labs know about the first, and I'm sure they try to limit how much others milk their models. As for the second, that's the "honest" way to compete, but it's not easy.

      • owebmaster 43 minutes ago ago

        your post helped me realize a change Meta is pursuing on Instagram that is to give more weight to captions and long text posts so they can have more data to training that would usually go to websites/Google. Even AI slop is good for this.

    • torginus 2 hours ago ago

      > This makes me wonder if AI companies even have a MOAT in the first place.

      Generally speaking they do, at least from my experience when switching from one model to the other - their performance decreases, and they often do large refactors outside of the requested scope as they try to bring the code closer to 'their' style.

      Which makes sense imo - they'v been trained to iterate over the code they wrote, and not code that was modified by someone else in the interim.

    • chakintosh 3 hours ago ago

      > This makes me wonder if AI companies even have a MOAT in the first place.

      They don't. The moat will mainly be the tooling around AI, not the AI itself. You don't hear any company claiming their moat is the Internet.

    • gcr 2 hours ago ago

      This isn’t technically true. Most model providers don’t send the thinking tokens anymore, so if you switch from one provider to another, you will be missing large parts of the conversation.

    • dangoodmanUT 24 minutes ago ago

      The major labs don’t allow assistant prefill, so you have to “summarize”

    • ryanjshaw 3 hours ago ago

      > Cause if that is justified, then Kimi, Qwen, Deepseek etc are also valued at a trillion dollars

      It’s more like a bunch of people are placing different bets. Only a few bets are going to generate a return, possibly only one, but the profit on that one bet will make it all worthwhile. That’s the theory, anyway.

      • owebmaster 38 minutes ago ago

        There's no mandate that says any of those bets are going to generate a return

    • regularfry 4 hours ago ago

      With their current API approach they're essentially a commodity. They need to start moving parts of the harness behind the API, otherwise they'll remain a commodity.

      Recursive self-improvement changes the parameters a bit, especially for the market-leaders, and it's the one thing that makes me wonder if they'll be able to extend their lead faster than the smaller labs can keep up, but it's an option available to everyone.

      • me551ah 3 hours ago ago

        > They need to start moving parts of the harness behind the API

        This isn't without it's challenges however.

        1. This will increase costs drastically, since they would need to a run a sandbox per use to ensure data isolation.

        2. Increased latency, and this directly limits how much of the harness can be moved to the cloud before the users notice sluggishness

        • regularfry 3 hours ago ago

          Oh, I'm sure. If it wasn't a bit of a tricky needle to thread we'd have seen them start to do it already.

        • owebmaster 36 minutes ago ago

          3. Users can still move to better open harnesses

    • varispeed an hour ago ago

      From my experience these open source models are nowhere near the performance offered by Fable/Opus/GPT-5.6. Whenever I tried Qwen, Kimi, Deepseek, the results were much worse and it just took much more time to get something usable. When you consider that, the frontier offerings are still much cheaper.

      • w4yai 34 minutes ago ago

        What provider did you use ? Synthetic's Kimi is a beast

  • jjcm 6 hours ago ago

    The visual web development / perceptionbench scores are very promising for image->html flows. Here are some test results.

    Original designs: https://image.non.io/257dc9cb-9e6b-4e00-8f12-23ea5e073649.we...

    These are fairly rich, pattern-heavy, nuanced designs. I've asked each to create it as a SPA where the map flows behind it.

    Opus 5 results: https://html.non.io/opusAcmeBooks

    Qwen 3.8 max results: https://html.non.io/qwenAcmeBooks

    Same prompt for both for the conversion. I used OpenCode for the qwen version, but I encountered a significant amount of errors / timeouts while it was running. Claude finished in around 16 min, but I spent close to 2 hours shepherding the Qwen build. For the implementation, there were signs it had good vision, but the timeouts make this very hard to use in a production setting.

    • jjcm 6 hours ago ago

      Update: Tried using Qwen Desktop. It told me it succeeded, and linked me to the folder it created it in.

      That folder didn't exist, I asked Qwen where the files were, and it attempted to create them again.

      Stopped it, and asked what happened to the original files. Qwen Desktop apparently doesn't have access to the local file system, but continued merrily along without warning about that.

      https://image.non.io/07a153cd-c31c-4f7b-a89d-363faec05a91.we...

      • jjcm 5 hours ago ago

        Also tried Qwen Code. Tried it with a coding plan and it 401'd. Tried it with an api key I loaded up with pay-as-you-go credits and it 401'd.

        It did a self update and it worked for a single request (me just saying hi). Pasted in the prompt to build the page and it 401'd.

    • nl 6 hours ago ago

      Wow the Opus version is a lot more functional (try clicking some links).

      I'm quite surprised at the difference.

    • lagrange77 6 hours ago ago

      So Opus introduced a container with overflow:scroll in the middle of the page, while Qwen didn't? That's interesting in terms of "smartness".

    • inhumantsar 6 hours ago ago

      I've had nothing but trouble with Qwen on opencode. GLM too. I know a few people who use them on Ollama could without issue though, so I don't think it's a model issue.

    • sgt 6 hours ago ago

      Both horrific (from a user's perspective, perhaps not the underlying code).

      I've noticed another type of AI slop that's prevalent in all the popular models; font sizes and variations like you wouldn't believe. It's very hard to instruct LLM's not to do this.

  • Zenst 4 hours ago ago

    Whilst these coding models improve, they seem to cater for multiple languages, and for many, a trimmed-down LLM that supports just one language would be fantastic. This would be smaller, more able to run on the hardware people have at home, realistically (even on the CPU). Having one LLM that knows assembler, java, bain, C etc is neat, but when you only work and use one language at a time, it would be kinda neat to have those broken out into dedicated, smaller LLMs. After all Qwen3.8-Max handles over 90 programming languages - ask any programmer to name a list of computer languages and if they get over 20, they are doing well.

    • Achshar 4 hours ago ago

      I believe the knowledge of multiple languages brings something onto the table that having narrow language knowledge does not. The LLM will be able to better generalize a problem, apply universal concepts and avoid mistakes that would otherwise be too "echo chambery". Even as a human, knowing multiple languages has made me better at my primary language.

    • ucha 4 hours ago ago

      That's not how LLMs work. If you're talking about number of parameters, you wouldn't be able to reduce the size much by "removing" support for other languages.

      • k__ 3 hours ago ago

        Yeah, I'd assume it's possible to extract all languages as steering vectors from a model and then substract the ones you don't need from its weights.

        However, that would just change the weights values and not their dimensions.

      • whage 2 hours ago ago

        Can you please explain why?

        • msdz 2 hours ago ago

          Not who you responded to, but I’ll give it a try.

          Imagine our LLM as this one-dimensional matrix (instead of unfathomably many, many more dimensions):

          0.728201017

          -1.9293839303

          2.93020202929

          5.82290101728

          -0.2844920917

          And then, all of these values are multiplied by some scaling factor, essentially vectors pointing in some direction (in our case, only on a one-dimensional line instead of in some higher-dimensional space).

          Now imagine it’s possible to “remove” the portion of the weights’ directions that’s responsible for some undesired property like history knowledge, or another programming language:

          0.428201017

          -1.6293839303

          2.63020202929

          5.52290101728

          -0.5844920917

          (For demonstration and faster-to-type-out purposes, I’ve changed each vector by deducting a constant amount of 0.3, which doesn’t make much sense. In reality, it’d modify probably all digits in some direction.)

          Now we can see: the number of rows has stayed the same, but the value has changed. This means the required storage (or computational) space remains the same.

          Please do correct me if this simplified too much or I had a mistake in my understanding.

          • gcr an hour ago ago

            This is oversimplified. The proposed question is whether a model with fewer parameters could achieve performance on one language similar to that of a larger model that’s been trained more broadly, which isn’t straightforward to do.

    • zild3d 3 hours ago ago

      I think you'd want to remove e.g. knowledge of harry potter universe and ancient egypt. Training on a bunch of high quality java code bases is still likely to improve your python model.

      • satvikpendem 2 hours ago ago

        Actually, it's shown that even general knowledge helps coding models because their input is natural language itself so they need to understand it well enough to even turn into code.

    • kwikiel 4 hours ago ago

      Teaching model to code in say python does indeed increase its effectiveness in other seemingly unrelated areas. On the other hand I remember that early models of ChatGPT were great in chess notation and later models aren’t as good as OpenAI doesn’t prioritize this now

  • archerjax 7 minutes ago ago

    Qwen3.6 35B-A3B Is my current backup model after Ornith—1.0, which has performed slightly better and faster at Python, db and some backend tasks. About 75 tokens/sec on a 5060ti 16gb depending on context size (usually 64k)

  • docheinestages 7 hours ago ago

    It was a matter of time for China to catch up with the US. In terms of infrastructure, manufacturing, and engineering workforce, China has the upperhand and I foresee them becoming the SOTA leaders. Maybe if the US wasn't so busy gatekeeping and keeping things proprietary, they would've had more trust from the open source community.

    • perbu 7 hours ago ago

      First and foremost, China isn't energy-limited like the US is. A modern grid, lost of cheap power coming online every day. The worlds most advance ultra-high voltage transport links are tying the deserts in the west to the cities in the south.

      It probably sucks for you if the proposed powerline goes through your house, but the need of the many come first.

      Having cheap and plentiful power is a huge market advantage. It was one of the factors driving Norway out of poverty 100 years ago.

      • seanmcdirmid 5 hours ago ago

        I think this is really a rosy image of China’s electrify situation. They have huge needs in the east and green energy in the west, they can’t build their UHV links fast enough. They are doing ok at keeping up, but there isn’t a surplus of cheap electricity lying around in the same places where you have cheap water as well.

        • victorbjorklund 3 hours ago ago

          What is stopping them from just building their data centers in the west where they have energy surplus? Not like you need to locate a data center inside a city.

          • seanmcdirmid 3 hours ago ago

            Water. The west is really dry. We could throw in data lines as well but it’s really bottlenecked by water. Actually the only place in China with water in abundance is southeast China.

            Also they really don’t have the chips to supply those data centers, and the government isn’t so crazy to go that aggressive on AI, they have lots of other priorities as well.

      • dalemhurley 6 hours ago ago

        There is economic benefits of the cost per a lumen continuously coming down.

      • hobofan 6 hours ago ago

        The US also isn't energy-limited. They'll just price out all humans living there from buying any electricity.

        EDIT: This was obviously meant to be facetious with the intent to highlight the negative effects on the general population that datacenter buildout has in the US.

        • Barbing 6 hours ago ago

          USA vs. China energy production graph is wild https://stanfordreview.org/content/images/2025/10/us_china_p...

          States have had trouble delivering expected EV charging capacity btw

          Why aren’t we considered energy limited?

        • Mashimo 5 hours ago ago

          > The US also isn't energy-limited.

          I have not looked into it, but I have heard a lot of new data center have to run on site gas turbine on trailers to have enough power.

          If the US is not energy limited, why they do that?

      • wickedsight 5 hours ago ago

        > but the need of the many come first.

        The need of the rich, you mean. In these kinds of situations it's never about the many, if it was about them different choices would be made.

    • Oras 7 hours ago ago

      Also give it to Chinese labs for the vision of going open source and open models to compete. Apart from their great models, I quite like how they publish papers of their research too.

    • villish 4 hours ago ago

      > trust from the open source community

      volunteers in the open source community use whatever is easiest and cheap.

      open weights is not open source. there is no "trust".

  • storus 9 hours ago ago

    I think the window for a ban of open weight models is closing fast so let's hope US administration is going to miss it and we get Fable-level models (at least in some aspects) with open weights without infringing any newly introduced law as a long-term local baseline.

    • Fordec 8 hours ago ago

      Even if the US does ban it, Europe due to its lack of European competitors, has no current similar protectionist incentives. Even if there is regulatory capture in the US, the rest of the world isn't going to follow suit until the current market leaders outright are replaced with other competitors that Europe would want to favor. The genie is out of the bottle in the West already.

      • gilgoomesh 7 hours ago ago

        > lack of European competitors

        There's Mistral. Although they've been surprisingly quiet for the last 6 months.

        • mdp2021 2 hours ago ago

          > There's Mistral

          https://trackingai.org

          Mistral: eq.IQ ~70

          Kimi, Claude, Grok, Gpt, Gemini: eq.IQ ~130+

        • pimeys 7 hours ago ago

          They are profitable and active on the enterprise local model territory. You can RL a model with them for your own purposes and I heard good things about it.

          • InsideOutSanta 4 hours ago ago

            Mistral's business model works even if they start using Chinese models instead of training their own.

        • Fordec 6 hours ago ago

          France might do something mad and take that route, but EU wide ain't happening for Mistrals sake.

          • victorbjorklund 3 hours ago ago

            Would be hard for them to act alone due to free movement in EU. Would be hard for them to outlaw a German business from offering the models from a German datacenter to French customers.

      • rzerowan 5 hours ago ago

        Theres a pretty big chance imho that europe will follow suit , or at least the segmenets that are fully aligned with the US on all things china even to their own detriment. Remeber rip and replace Huawei 5G because of national security , leading to some parts of europe having worse coverage than some tiny african markets. Best bet would be for europe to look at it like what it is an open source commodity that is useful to build on rather than a moat to extract rents with.

        • victorbjorklund 3 hours ago ago

          Doubt it now when US declared that Europe is an enemy, Europe is banned from the best models and that US is considering an invasion of Europe (Greenland). The days of US influence in Europe is limited.

        • Fordec 5 hours ago ago

          If it was 2021, probably. But Trump has soured relations in the last 18 months enough that the soft power about technology isn't there like it once was assumed to be. What's he going to do if Europe doesn't step in? Jack up tariffs? Is it that day of the week already?

          Open weights is more beneficial to Europe spring-boarding a catch up than defending Claude/Anthropic.

        • badatnames 4 hours ago ago

          If CADA passes in its current state I doubt we'll be banning Chinese models any time soon. I think most people misunderstand the extent of the permanent damage caused by Trump

          • InsideOutSanta 4 hours ago ago

            He threatened to go to war with Denmark over Greenland. In the US, that might just be a side story, a little joke from insane grandpa president. But it's not in Europe. And it's only one of the crazy adversarial things he did.

      • zmmmmm 6 hours ago ago

        well, the EU just brought down the regulatory hammer which complicates things a bit. we will have to see if it operates as a proxy ban on open models depending on how they go about enforcing all the safety, bias, transparency and data provenance requirements.

      • coredev_ 7 hours ago ago

        I mean there is Mistral?

        • akmarinov 7 hours ago ago

          I mean it’s not competitive at all?

          • mnicky 5 hours ago ago

            It’s more that they have a different business case than competing for the top spots on public benchmarks.

            They seem to be oriented more toward customizing models for the concrete needs of a company, on-prem deployment, proprietary knowledge-bases, etc.

          • deaux 6 hours ago ago

            It has been more competitive than any other LLMs by non-US/CN companies. Including Korean and Japanese models in case you want to bring those up.

            • satvikpendem 2 hours ago ago

              A distant third is not saying much.

          • kzrdude 3 hours ago ago

            It has produced some locally useful models.

      • sparkling 7 hours ago ago

        >Europe due to its lack of European competitors, has no current similar protectionist incentives [...] The genie is out of the bottle in the West already.

        I agree, but you are underestimating EU regulatory incompetence

    • Daishiman 8 hours ago ago

      What can the US administration do about it?

      • root_axis 8 hours ago ago

        Send you to jail.

        • tiborsaas an hour ago ago

          Worked well with alcohol last time

        • ChrisGreenHeur 6 hours ago ago

          How can the US administration send me, a citizen of Sweden, to jail?

          • throwaway473825 2 hours ago ago

            Sweden is dependent on the American nuclear umbrella. Until that changes, the US will have a lot of leverage on Sweden.

          • victorbjorklund 3 hours ago ago

            I mean they did manage to make Swedish authorities go after Pirate Bay.

          • pelagicAustral 2 hours ago ago

            I mean, it's not like they have done it all over the place already...

        • Hackbraten 7 hours ago ago

          No.

      • CamperBob2 8 hours ago ago

        Level 1: Anyone using unauthorized model weights in their business is prohibited from doing business with the government...

        Level 2: ... or with anyone who does.

        Level 3: Anyone caught with unauthorized model weights is subject to the same prosecution they could expect if they had been caught with CSAM.

        • akmarinov 7 hours ago ago

          Cool - how are they going to detect/police that?

          • matheusmoreira 7 hours ago ago

            The NSA will run Mythos against the entire US population and it will find the patterns. Powerful computer purchases. Energy consumption suddenly spiking. HN comments demonstrating intent and/or contempt for the glorious self-evident freedom preserving laws of the United States.

            Then they call your local law enforcement with an anonymous tip about this suspicious dude who's long overdue for a totally random home inspection.

          • sweetjuly 7 hours ago ago

            When has enforceability ever been a concern of the government? This is the same government that had anti-sodomy laws on the books until the Supreme Court ruled it unconstitutional in 2003.

            Making it illegal even without having a realistic means of enforcing it still chills behavior, and so just because it isn't practically enforceable in the general case doesn't mean it isn't without consequences.

          • victorbjorklund 3 hours ago ago

            Same way they detect if you do business with Russia, North Korea, Iran. They don’t detect 100% of the cases but the punishment are severe enough to deter most companies.

          • fauigerzigerk 6 hours ago ago

            Whistleblowers. Personal use would still be possible of course.

          • gspr 3 hours ago ago

            It's not out of the realm of possibility to do AI audits. I'm not saying it's a good idea or likely, but certainly something they could do.

      • protocolture 8 hours ago ago

        What they always do. Send in armed men with guns? Export Controls. Import Controls. National Security Laws.

        • xeromal 8 hours ago ago

          Good luck doing that in China?

          • HDBaseT 7 hours ago ago

            You can send armed men to your house, or restrict companies in America from using these models.

            They can also restrict US providers from serving these models. Looking at OpenRouter, there is currently 11 providers for 'DeepSeek V4 Flash 0731' with the only non-US one being Deepseek themselves, which aren't even the cheapest.

            • Barbing 6 hours ago ago

              > the only non-US one being Deepseek themselves, which aren't even the cheapest.

              Interesting.

              If I were a western lab, might I be tempted to subsidize at least one faster & cheaper provider for Chinese models to keep even more data from leaving the US?

              (I know in this case there can just be more efficient providers, am asking more than speculating)

          • protocolture 7 hours ago ago

            >Good luck doing that in China.

            Crazy how all the 5 eyes nations banned Huawei within like 18 months of each other.

            • regularfry 4 hours ago ago

              For certain specific uses. As a consumer I can still buy Huawei phones. As a business I can still buy Huawei routers, if I feel so inclined.

            • akmarinov 7 hours ago ago

              Europe still heavily uses Huawei though, so it’ll be the same with Chinese models

        • nechuchelo 8 hours ago ago

          Import control would only affect US? Also good luck sending armed men to China.

    • 0xbadcafebee 5 hours ago ago

      They can't enforce a ban. Companies can just download the models and run them on MacBooks or GPUs (or the cloud) and USG has no idea. It would also hurt the administration's funding from corporate tech (companies don't like to fund politicians who restrict them). I'm not saying the administration won't do it, it would just be very dumb.

  • simonw 10 hours ago ago

    > Today, we are officially releasing Qwen 3.8-Max, the most capable model in the Qwen family to date. This also marks the first time we will open-source the weights of a Qwen-Max-class model — the open weights will be released next week.

    I don't understand. That's dated today, but:

    https://twitter.com/alibaba_qwen/status/2078759124914098291

    > Qwen3.8 is launching and going open-weight soon! [...] You don't have to wait to test it. Just now, the Qwen3.8-Max-Preview made its debut on Alibaba’s Token Plan, Qoder, and QoderWork.

    That was on July 19th. I used it to draw this pelican: https://simonwillison.net/2026/Jul/20/afraid-of-chinese-mode...

    So what are they releasing today?

    • bloomsa 10 hours ago ago

      July 19th post mentions “Max-Preview” vs. today’s post dropping the “Preview”. Unclear what changed if anything though.. Maybe broader availability or it’s a slightly improved checkpoint

    • Jowsey 10 hours ago ago

      My understanding is that these "preview" models are usually earlier RL checkpoints, and that "official release" happens when they're happy with the training run?

      I believe they mentioned around the preview announcement that they'd be releasing improvements to capability, which I assume means continued training.

      • ignoramous 7 hours ago ago

        In Qwen's case, both 3.8 Max releases seem rushed may be in response to Kimi K3 getting all that attention.

        3.8 Max Preview ran 90% discount on QwenCloud exactly as when Moonshot couldn't keep up with all the signups.

    • simonw 9 hours ago ago

      ... other comments were right, this is the full qwen3.8-max model, two weeks ago was the qwen3.8-max-preview release.

      Here's a pelican I just got out of the new model. It took 11 minutes and forgot the wheels! https://tools.simonwillison.net/markdown-svg-renderer#url=ht... (scroll to bottom)

      The reasoning trace is pretty great:

      > More additions: basket with fish in it? Cute detail — a fish poking out of a basket on the handlebars! This adds charm and pelican context.

      If the price is $2/$6 that cost me 17 cents: https://www.llm-prices.com/#it=90&ot=29734&ic=2&oc=6

      • ComputerGuru 9 hours ago ago

        It gave the svg for the wheels in the reasoning trace then forgot to include them in its final answer. Lol.

        • codedokode 9 hours ago ago

          It has a "definition" for wheel in SVG inside <defs>, but did not use it in the picture.

      • pettijohn 9 hours ago ago

        Wow, bike geometry is really good! Except for the missing wheels lol

        • applfanboysbgon 9 hours ago ago

          Do pelican bikes need wheels? They've got wings, after all... I think Qwen is on to something here.

          • froh 8 hours ago ago

            It's because of the basket with the fish. like ET, fishy fishy sail home.

          • konart 7 hours ago ago

            And what if his name is Marty?

      • CamperBob2 8 hours ago ago

        K3 also forgot the wheels when I tried it, but it turned out to be a bug in llama-server's built-in SVG viewer. I know you have your own rasterizer but just FYI, sometimes it isn't the model's fault.

    • telemaxs 10 hours ago ago

      they releasing Max.

  • adi2907 10 hours ago ago

    Once OpenAI and Anthropic are public, every such announcement will become a reliable sell signal

    • gr_norm 9 hours ago ago

      Agree, I don't necessarily see a strong argument favoring OpenAI or Anthropic here. In the interest of perspective, can anyone (perhaps playing devil's advocate) give one?

      The open models are now good enough for what I want to do with them, let alone any future improvements. And factoring in efficiency gains, a model in the ~70b range starting to satisfy my needs would completely obviate the need to pay others for inference. This does not seem far-fetched to me, comparing with where open models were at this time last year. What am I missing?

      • pianopatrick 7 hours ago ago

        Seems to me OpenAI and Anthropic are kinda following the Apple business strategy. Those two offer a premium service that gets better results and works more seamlessly. I.e. the integration between Anthropic models and Claude Code is apparently nice and gets better results, and I've heard anecdotally that Codex is currently the best.

        So just like in IPhone vs Android, you could end up with a situation where Chinese firms compete and get most of the revenue and usage with low profit margins but OpenAI and Anthropic capture a premium side of the market and still get a lot of profits.

      • ipaddr 7 hours ago ago

        Hardware and electrical costs including power usage and electric wiring/outlet costs of such machine.

        Unless you are spending more than a max subscription (200 a month+) its cheaper to use the cloud.

        But things are priced cheaper in the cloud now to lock you in and restrictions around hosted models are getting worse.

        If you only have a $300 dollar laptop its probably not worth the upgrade.

        I'm personally excited by local AI but the experience for the average isn't the same. I'm willing to get .5/s running on 10-15 years old machines but what I can do with it is limited.

      • nl 6 hours ago ago

        > In the interest of perspective, can anyone (perhaps playing devil's advocate) give one?

        I have numerous cases where Sol failed and only Fable could solve a problem. For example yesterday I was merging a Q2 curved with a Bezier curved face in 3D using OpenSCAD. I tried for over 2 hours with Sol 5.6 high and x-high.

        Fable two-shotted it in about 30 minutes.

        In my experience open models (or GLM, DS and Kimi) are radically worse than either of Claude or ChatGPT at these tasks.

        I think there is a huge "long tail" of tasks like this where the frontier labs are ahead, and I think this long tail is quite important.

      • dsign 6 hours ago ago

        > What am I missing?

        Their marketing department :-) . I'm only half-joking; those guys are hard at work finding the best product-market fit for ChatGPT/Claude. "Product market fit" means "strongest revenue", which is not necessarily going to bring the best tool for you or me, but the one that can either get more consumers to shell off money, or more enterprises to cough money for licenses, and in both cases those consumer basis will be narrowed down to what legal and geopolitical circumstances allow OpenAI and Anthropic (and this is why they want to ban the competition!). It also means dark patterns and enshitification, of which I'm already seeing some both in the Codex interface (it was just renamed "ChatGPT"!!!) and in Claude Code (which also is just "Claude" now and can't '@' properly any longer). So in the medium run most people will be better off running an open source harness that can use any model.

      • twelve40 8 hours ago ago

        coding on a laptop is only one use case

        you can't create a new drug by running a model on a laptop. You can't serve a customer support bot running on a laptop. You can't generate video in bulk for many users on a laptop. So there is still a case for paying others for inference.

        Does it justify the valuations? No idea, but some major use cases are still there. That's why they are rushing to implement, OpenAI creating a "deployment company", Anthropic having some pharma rumors, etc.

        • lelanthran 7 hours ago ago

          Surely all those use cases can be done right now without a closed model?

          I think GP was asking specifically about the use case for closed models.

          • twelve40 6 hours ago ago

            yes, but at that point even open weight models are not free. Can someone set up the best open-weight model for free and charge pretty much just for GPU usage+operations+margin for inference? yes. But they would have to keep up with how good the private models are. The bet is private models would sell in a similar way at a premium and invest in staying ahead. Is this bet going to work? no idea, don't shoot the messenger.

            • lelanthran 6 hours ago ago

              > yes, but at that point even open weight models are not free. Can someone set up the best open-weight model for free and charge pretty much just for GPU usage+operations+margin for inference? yes.

              Or, the company itself can rent the GPU and host the model of their choice on it.

              > But they would have to keep up with how good the private models are.

              Why? The whole point of the thread is that the marginal gains of using private models is a fraction of the additional cost of using those private models.

              IOW, if you really need that improvement over the open models, you can go ahead and pay it. What we are seeing though is that the improvement in general is barely noticeable but the cost is 4x as much.

    • ycui7 9 hours ago ago

      Can they still go public ? MiniMax M3 Pro is also coming, then DeepSeek-v4-Pro GA, then GLM5.5. There will only be bad news for them in the coming few weeks/months.

      • wmf 9 hours ago ago

        Fable 5.1 is coming, then GPT-6...

    • int32_64 9 hours ago ago

      It's not so simple, if such a headline can get them closer to the regulatory capture they want to lock in American businesses and forbid them from using Chinese AI.

      • OtomotO 8 hours ago ago

        But the US are the country of freedom!

        That's what Hollywood has been telling me my entire life!

    • MangoCoffee 9 hours ago ago

      US AI labs really rub me the wrong way, especially with the doom and scare tactics they use. Both Altman and Dario keep talking about how AI will replace workers and how we should regulate LLMs for national security, Dario’s main point.

      LLMs are useful. We can all see that in agentic coding. But replacing everyone’s job? Hardly. And what’s with the scare tactic of trying to get the US government to ban foreign models?

      LLMs are useful, and dare I say they’re on par with the internet. Making them cheaper and affordable is good for everyone. The fear mongering from Anthropic and OpenAI looks like an attempt to corner the US market into using only US models so they can keep the profits, especially since China has proven that LLMs are a commodity. US AI labs should work on making LLMs cheaper or better harness. Altman and Dario are not trustworthy.

      • EMIRELADERO 9 hours ago ago

        You are right to feel that way about the frontier labs, especially Anthropic. From https://stratechery.com/2026/anthropics-safety-superpower/

        > "Anthropic believes that they are the ones who should have final say over how Anthropic is used; given that they think only they should be developing leading edge AI, they by extension think that only they should have final say over AI generally. When you further combine this realization with the company’s pronouncements about AI’s ability to conduct all economic activity, you realize that Anthropic’s leadership effectively wants to have power over everything and everyone."

        • usef- 9 hours ago ago

          To be fair, we're simultaneously mocking anthropic for believing in safety so much and also for them thinking they're the only ones that care enough about it. It's true that no one else seems to care as much. Judging by reactions from everyone, all their safety talk is very bad PR.

          • red_green_yell 8 hours ago ago

            The criticism isn't that they believe in safety too much. It's that they patently using safety as a red herring with the actual goal of regulating away competition that they know the cannot beat.

            • usef- 8 hours ago ago

              The people involved have been talking about safety long before they had any users or a company.

              "Concrete Problems in AI Safety" by Dario and another founder was published 2016, anthropic was founded 2021. Among a bunch of other examples, including other founders.

              If safety is seen as a joke now, it was really seen as a joke back then. The reason they keep shooting themselves in the foot with bad PR is because they truly believe in risks.

              • anon373839 an hour ago ago

                I’m sorry, but this do-gooder concept doesn’t jibe with their other actions. For example, swindling their business partners (such as Figma). Filing an unnecessary trademark lawsuit against a customer whose brand predates Anthropic.

                And for safety? Oh yeah, they literally sell the removal of guardrails in exchange for minimum spend commitments.

          • t43562 7 hours ago ago

            What they believe now or care about is fundamentally not very relevant: allowing them a monopoly would be a big mistake. Google was supposed to do no evil and it probably started that way but nothing guarantees the future other than having alternatives.

      • usef- 9 hours ago ago

        If there are genuine society risks in a tech I don't want to discourage CEOs from talking about them. I feel like we've spent decades talking about how evil chemical companies (etc.) were about covering up issues in the 20th century. But yes, that's different to being a reason to ban external models.

      • dmix 9 hours ago ago

        Sam drank the "superintelligence" kool aid early on and said 30-40% of jobs could be impacted by AI, but recently admitted he was wrong

        > “My scorecard, at the highest level, would be we’ve been roughly right on technological predictions and pretty wrong on the social and economic implications” https://www.cxtoday.com/ai-automation-in-cx/sam-altman-softe...

        I agree re: Dario quietly pushing for government control. He also said LLMs would replace a lot of entry-level information jobs, doubling the unemployment rate from 4-5% to 10%.

        Yale did a study recently showing little impact on employment in high-AI exposed jobs https://budgetlab.yale.edu/research/ai-probably-not-yet-reas...

        • conception 9 hours ago ago

          I imagine it will be a long tail. Most companies won’t fire people for AI but probably won’t immediately replace a person that leaves, if at all.

          • magicalhippo 7 hours ago ago

            Or won't hire that extra person when they need to increase output.

        • twelve40 8 hours ago ago

          but this crap may take forever to play out even if the outcome is well-known. Self-driving is "here", it's obvious that once it's cheap enough having a human behind a car wheel or a freight truck wheel is an absurd waste of human life (kinda like digging canals with bare hands instead of an excavator), yet truckers and uber drivers are still employed. But everyone knows the writing is on the wall for them.

          • necovek 5 hours ago ago

            Is it? I believe it is fair to hope so and even expect it, but this has been promised as being just around the corner for 10+ years.

            Yet here we are, still driving our own cars, and laughing at silly behavior of most advanced self-driving systems.

            I am certain we'll get to something of similar value, but I expect we'll have to improve infrastructure too (smart roads).

          • lovasoa 6 hours ago ago

            the writing has been on the wall for fifteen years, and yet the number of professional drivers has only increased since then...

    • aurareturn 8 hours ago ago

      It'll sell after 1-2 times, then the market will get jaded and ignore.

    • _jayhack_ 9 hours ago ago

      Only the ones that beat expectations

  • tesnorindian 5 hours ago ago

    AWS Bedrock still lacks the support for the latest open weights models like GLM 5.2, DSV4 Flash 0731, Kimi K3 etc. Even they only support Qwen 3 which is a very old model. Any specific reasons they are reluctant to support open weights models?

    • kcb 44 minutes ago ago

      If I recall most of the open weight models have provisions about large scale commercial hosting. So probably licensing issues.

    • roosgit 3 hours ago ago

      I was wondering the same thing. Maybe it’s a licensing issue. Or the models are too big and there isn’t enough demand. But size is not a solid argument because they also don’t support Qwen3.6 27B and 35B-A3B, especially since they just added Gemma 31B and 26B-A4B.

  • khanhnguyen8386 5 hours ago ago

    2.4 Trillion parameters with open weights releasing next week? The open-source community is going to need a collective GoFundMe just to buy enough VRAM to host this monster.

  • boredatoms 9 hours ago ago

    3.8 27b is the real news here

    • btbuildem 22 minutes ago ago

      Can't wait, been running the 3.6 locally and it's been a boon.

    • shockembopper 9 hours ago ago

      real

  • harhargange 3 hours ago ago

    I used the qwen 3.6 models and convinced myself to go ahead and get a gpu. I got the 7900 xt with 20 gb vram.

    • pjm331 20 minutes ago ago

      How’s that been going?

  • youngpabl0 26 minutes ago ago

    KimiK3-Thinking is not a matching model for comparsion?

  • sheepscreek 2 hours ago ago

    I was super excited to read this but lost the plot when I go to

    > Qwen3.8-Max was asked to create the oh-my-cli project from scratch and, over a 10+ day long-horizon autonomous coding run

    10+ days of building what exactly? Is that a shell prompt customization toolkit? Or a coding harness??

    Neither - well, sort of the second. The poorly named thing is a self evolving coding harness, the self evolving part makes it a big deal.

    I wish they had picked a different example.

  • theanonymousone 7 hours ago ago

    At $2/$6, it can be much more "approachable" than K3. Wondering what have they done differently to be able to afford this price (that K3 couldn't, apparently - most other providers offer similar prices to K3 itself).

    • markasoftware 6 hours ago ago

      Moonshot is printing money on k3. It likely costs the same to serve as qwen3.8. The license requires all major inference providers to sign an extra (secret) licensing agreement with moonshot that almost certainly requires them to agree to this price and pay royalties to moonshot. Watch as the k3 price plummets over the next 1-2 weeks.

      • stanac 5 hours ago ago

        If k3 is open-weight (and it's available on hugging face [1]), how could they force providers to sing an extra (secret) licensing agreement?

        Edit to answer my own question:

        License file [2] states:

        > If the Licensee or any of its affiliates operates a Model as a Service business, and the aggregate revenue of the Licensee and its affiliates exceeds 20 million US dollars (or the equivalent in other currencies) in total over any consecutive 12 months, the Licensee must enter into a separate agreement with Moonshot AI before using the Software or its derivative works for any commercial purpose.

        [1] https://huggingface.co/moonshotai/Kimi-K3

        [2] https://huggingface.co/moonshotai/Kimi-K3/blob/main/LICENSE

        • Tryk an hour ago ago

          How would that ever be enforced, I wonder.

        • breakingcups 3 hours ago ago

          Can weights be copyrightable?

    • 0xbadcafebee 5 hours ago ago

      Qwen is Alibaba. Alibaba rents hardware to Moonshot. So Qwen always has the option of cheaper hardware. Qwen might also break even on inference as competitive advantage since Alibaba has wider pockets. Alibaba also owns a 36% stake in Moonshot, which must make pricing discussions interesting... but then again Google rents hardware to OpenAI and Anthropic.

  • ggcr 4 hours ago ago

    Waiting for Qwen3.8-27B :)

    Their base models and architecture has quickly become the go-to for local inference and fine-tuning, even when they introduced some tricky things like GDN, so many people use it, that it was matter of days/weeks until lots of OSS frameworks adopted it.

  • wxw 10 hours ago ago

    > This also marks the first time we will open-source the weights of a Qwen-Max-class model — the open weights will be released next week.

    Nice!

  • ddxv 10 hours ago ago

    It seems this is the only mention of cost?

    > Qwen3.8-Max comes with the official support for reasoning_effort, which can be used to adjust reasoning depth and control cost:

    > xhigh (default): for complex tasks demanding thorough analysis

    > medium: balancing accuracy and speed

    > low: efficient reasoning optimizing for speed and cost

    I hope this is significantly cheaper. I've been loving Deepseek for it's nearly free usage costs, hard to justify switching from cents per day.

  • shAIster 2 hours ago ago

    Have you retrained Qwen not to give Hoover Institution answers to geopolitical questions?

    It is clearly distilled with an aggressive pro West bias to increase sales in the West.

  • jofzar 10 hours ago ago

    Lmao I love their video with the idea that people will be able to do their hobbies while ai does their job.

    Surely Alibaba is leading by example here by reducing work hours per week while keeping pay the same right? Right?

    • mlmonkey 10 hours ago ago

      That's the thing. Wny are companies like OpenAI/Anthropic/Alibaba/Kimi/Deepseek still hiring SWEs if their models have become so good?

      • rrix2 9 hours ago ago
        • mathisfun123 8 hours ago ago

          Otherwise known as the "no shit Sherlock" principle

      • vitorgrs 7 hours ago ago

        OpenAI can't even build Codex app (not cli) for Linux... I thought code was solved?!

        Ironically it's Electron BS, so actually, Sol could probably build itself...

      • BetterThanSober 10 hours ago ago

        The models are good even by skeptics standard, it's just that evangelists are overselling the capabilities. If you understand the limits of LLMs not using them as a business is shooting yourself in the foot.

        However, they are not at the point where they can effectively train themselves, nor did they are capable of researching their own method of learning. SWEs in mid-corps on my country are right now relegated to reviews and sanity check, basically babysitting the LLMs and making sure they're not spouting nonsense. If you think about it, that's basically QA and can also be delegated to another AI. If Bun's rust rewrite that they tout as fully LLM-led can pass the test of time in a year or so I think that's it.

        I believe all that is now constrained by compute and capital, not tech.

      • cute_boi 9 hours ago ago

        The world never runs out of problem. There is so much work to do.

      • Mythorian 10 hours ago ago

        I mean its pretty obvious right? This models are not flawless and sometimes reach stupid conclusions so there needs to be some one who watches it. Thought i must say u are right. Every one of them pretends that this new model is gonna finally take ur jobs lol

      • wmf 10 hours ago ago

        There's infinite work to be done, so higher productivity makes people worth more. (Obviously this doesn't apply if AI can do everything but we're not there yet.)

    • aianus 8 hours ago ago

      The percentage of the population that needs to work will continue to go down because of aging and automation although you might not see it as a reduction of hours for a given individual employed person.

      Already 38% of Americans aged 16 or older do not work and are not looking for work and yet are not dying from hunger or exposure. This would have seemed like a utopian dream to someone from the 1800s.

      • HDBaseT 7 hours ago ago

        Source?

        Being 16, 17 and 18 and not working is expected, given they are still at school. A good percentage of people aged 18 to 24 are studying full time.

        This stat seems a bit misleading and doesn't support the "you can live and not work argument". How many of those people are retired? How many of those are under 18? How many of those simply cannot work? How many of those live at home or are on food stamp?

        • konart 6 hours ago ago

          >is expected

          ... these days. 100 years ago you'd have a job at 12 in many cases, 14-16 if you were more lucky.

          I'm not even talking about peasants from previous centuries.

      • suslik 6 hours ago ago

        But how is that possible? How can one survive without income barring homelessness, begging, prostitution, and other not so utopian options?

      • cowboy_henk 6 hours ago ago

        In the 1800s most families only had a single provider, so this percentage may have been higher back then than it is now.

        • DoctorOetker 29 minutes ago ago

          the single providers were the children in the factories?

      • dinkumthinkum 6 hours ago ago

        Maybe you should ask AI to review your statistics and reasoning. A large amount of 16-22 year old kids are in school. And retirees 80+ are retired. I don't see how any of this is relevant to the idea of what would happen to the economy if there is an employment collapse. I don't know that this would also seem like a utopian dream to someone in the 1800s; I'm not sure what that means. I think someone from the 1800s would be surprised by a great many things and that statistic would probably be low on their list.

    • SyneRyder 9 hours ago ago

      > I love their video with the idea that people will be able to do their hobbies while ai does their job...

      Are you not already experiencing this? I think this is fairly common for people using AI now, though the time may not always go into hobbies or sports. It's common for me to setup Claude with an hour+ task while I catch up on housework, or while I'm getting ready in the morning.

      In the last couple of weeks I've unfortunately had multiple family illnesses - it has been helpful to have Claude keep up with much of my product development programming work while I visit my mother in hospital and check on my father's recovery. I'm able to give more time to family without worrying that business progress isn't keeping up. The overnight Claude sessions while I'm asleep have been particularly helpful.

      • jofzar 9 hours ago ago

        No I haven't had time to spend my afternoon rock climbing while ai generates documentation.

        It's infinite work, I just did more work while codex was doing it's thing in the background.

      • weikju 8 hours ago ago

        We are in the golden period where this IS possible. Once it becomes the norm to "do something else while your agent works", we'll be asked to do more WORK while the agent works, rather than do hobbies/housework/nap/etc.

    • aurareturn 8 hours ago ago

        Lmao I love their video with the idea that people will be able to do their hobbies while ai does their job.
      
      Anecdotally, I'm even more busy with AI than before AI. I'm expected to do a lot more even if doing one thing is faster.

      Before AI:

      I have 10 tasks that take 1 hour each to do.

      After AI:

      I have 100 tasks that take 10 minutes each to do.

      Same amount of time spent working, maybe even more stressful, just more productive.

      • DoctorOetker 24 minutes ago ago

        So you were working 10 x 1 hour = 10 hours before.

        And then you were doing 100 x 10 minutes = 100 / 6 hours = ~16 hours & 40 minutes.

  • kopirgan 9 hours ago ago

    Can a model be stripped off anything not relevant to coding and get a lot lighter? Or is that impossible?

    Just like we have professors with specialisation wondering if AI models can also be so.

    • htrp 9 hours ago ago

      You can... but the trick is to do so without killing performance. Turns out a lot of random things help make coding performance good.

    • applicative 8 hours ago ago

      Does this desideratum make any sense? The whole point is that you write to it in English or Urdu, and it writes the specified code. If you cut off everything but the code writing, you cut off everything.

      • regularfry 4 hours ago ago

        If you're literally using it as code autocomplete that's not functionally true. But it's still neither well specified nor a good idea.

      • bonesss 5 hours ago ago

        Domain modelling as well: we have clear programming concepts, but the kind of autocomplete that can autocomplete a customer sales process needs to be able to refer/leverage ontological connections on words like ‘bass’, ‘season’, ‘rebate’, and ‘jamboree’.

        Intuitively it feels like focused models should be better models, but human programmers are ‘better’ knowing programming alongside general stuff. We’re not reduced by reading economics or Tolkien, removing such knowledge would be premature optimization.

        • kopirgan 44 minutes ago ago

          Thanks..non AI expert here just wanted to understand..cos one of the most talked about topics is running models locally on cheaper hardware. Helps many esp in poorer places.

          Would be nice if a genuinely useful coding model can fit into an old laptop, give decent performance and know nothing but (say) Go or c language.

          But I see yours + others points.

    • vlyan 8 hours ago ago

      no, apparently, otherwise we'd already have specialized models. every bit of meaningful human-generated data appears to improve the overall capability of the model.

      • nicman23 8 hours ago ago

        we do though and it can be stripped

    • konart 6 hours ago ago

      Kind of yes, but this be get you are pretty stupid autocomplete yuo can probably avhieve without an LLM at all.

      >we have professors with specialisation

      Yes, but any professor with a specialisation is an erudite with vast knowledge across the board.

      I'd argue we can have a meaningful BIG model with a specialisation but not vice versa.

      PS: all of this is about a model that is expected to be able to execute development tasks on a human level. Obviously we can have small models that are very capable in things like TTS or STT.

    • ReptileMan 9 hours ago ago

      I guess it can but it will be useless. After all the model superpower is awareness and ability to guess and infer some stuff. Right now a model saves you time not only by coding faster, but that it can figure out some stuff about the shape of the data and its purpose.

      If you throw general purpose model at a codebase - it will look at the table and data logical connections beyond what is explicitly declared. It will figure out on its own that Salaries should be displayed on SalariesTable.php and it will "know" that your prices should include vat and so on.

      A human knows that VAT and price go together and are related, full size LLM does too, stripped one - doesn't.

    • jbellis 7 hours ago ago

      Yes, look up REAP.

  • Alifatisk 7 hours ago ago

    So the news here is that this model left the preview stage, and they are also releasing an open-weight version of the Max series for the first time.

    You can always try out this model for free on Qwen Chat. Alibaba Cloud has too much friction for me.

  • adrian_b 5 hours ago ago

    > The open weights will be released next week.

  • SXX 5 hours ago ago

    Has anyone know whatever they will release any video / image generation capabilities? Video input obviously suppose to be present.

  • bricss 3 hours ago ago

    Qwen3.8-35B-A3B would be really appreciated (-/\-)

  • valleyer 8 hours ago ago

    Is "cowork" a general industry term now? Here I was just getting used to "coding" replacing "programming".

    • regularfry 4 hours ago ago

      Cowork is to work as coding is to... ding?

  • xeromal 8 hours ago ago

    Has anyone tried Qwen with the Fusion 360 MCP server? I feel like drawing with python is close enough but I'm curious

  • anon-3988 5 hours ago ago

    What is the best LLM that I can use right now that is optimized for everything other than coding?

    The last thing I want my personal agent to do is to write up code and run arbitrary commands. That is practically a legalized RCE.

    • vorticalbox 5 hours ago ago

      that is not an model issue but a harness one, if you don't want it to have io to files or run command then simple don't give it access to the tools.

      • anon-3988 5 hours ago ago

        Yes, I don't. I have my own harness where the agent is only able to do a set of predefined things and none of them involves the internet. However, I imagine the model could be a lot smaller if it does not have the baggage of coding and programming in general.

        I mostly just need it to mostly be a very advanced NLP model that is able to figure the set of tools that it needs to call with what argument. Then it will just follow a predefined decision tree.

        • leansensei 3 hours ago ago

          Check out cactus needle, might be what you're looking for.

  • BeriV2 10 hours ago ago

    We will eventually need a self evolution benchmark to see where these large models can create recursive solutions that improve

  • luciana1u 10 hours ago ago

    the benchmark I trust most is whether the model can explain its own pricing page without getting confused

  • aliljet 9 hours ago ago

    I'm trying and failing to find value running a potential Qwen 3.8 27b dense model on a 16 core, 128 GB of ram, 2080ti box. Yes, the GPU yells for help, but the problem is that no math works to upgrade this machine even when pouring $200 in rent every month into the large model providers...

    How are you all justifying economical use of these local models right now? What's the cost efficient way to do this and do better (even with models evolving over time and losing now vs later) than the big labs?

    • aurareturn 8 hours ago ago

      You will simply not get more value out of running a local model vs paying for a subscription/API from the cloud in 2026. There is no math that will make local models come out ahead in $/intelligence/token.*

      The point of local models is privacy, offline use, and maybe no guard rails.

      * Not talking about enterprises that buy DGX racks and host Chinese models for internal use.

      • zargon 5 hours ago ago

        > The point of local models is privacy, offline use, and maybe no guard rails.

        But also, control and consistency. A local model cannot be changed out under your feet like an API model can be.

      • AureliusMA 8 hours ago ago

        Points are starting to be made in favor of value, to the contrary of what you are affirming. Specifically because the new open weights models lower the TCO of hardware in an environment where new open weights were previously thought to be a thing of the past.

      • Der_Einzige 6 hours ago ago

        There is for $/creativity/token. LLM sampling settings are poorly supported even in open source serverless providers but are the single best lever you have for getting better outputs in regards to creativity (and quality for long context or highly quantized models).

        • aurareturn 6 hours ago ago

          I'm pretty sure you can adjust the creativity for many Chinese model inference providers.

          • Der_Einzige 2 hours ago ago

            Most of them don't expose more than top_p/top_k/temperature. Those are woefully inadequate compared to what open source inference engines support.

    • dpc_01234 7 hours ago ago

      There's no point, except if you want privacy and independence. I am playing with a personal assistant that checks my emails, calendars, sends me an agenda and maintains my TODO list. I am not sending such data outside.

    • jbellis 7 hours ago ago

      The only scenario is if you have enough work to do batch inference. Using a tiny fraction of GPU capacity to decode a single request at a time just doesn't make sense, as you say.

    • AureliusMA 8 hours ago ago

      If you can do inference on the CPU, drop the GPU : it should be faster.

    • bsder 6 hours ago ago

      > $200 in rent every month into the large model providers

      We all know that is hugely subsidized, and I guarantee that OpenAI and Anthropic are looking to enshittify that ASAP.

      The enterprise users, however, are not subsidized like that. They pay per token. And some developers in those companies are chewing down a lot of tokens. Self-hosting an open weight model could be a massive savings very quickly. It also gives them negotiation leverage when talking to OpenAI and Anthropic.

      • cetinsert 5 hours ago ago

        We all ASSUME that.

        For all we know, inference might be dirt cheap, they might just be hiking the API prices so high for us to think subscriptions are subsidized.

        • bsder 4 hours ago ago

          Well, it is always possible that OpenAI and Anthropic have some secret sauce that they are hiding that nobody knows about. However, the pricing of tokens on places like HuggingFace and OpenRouter suggests that probably isn't true. In addition, the lack of reliability and general slowness of Opus and Fable at various times also suggests that.

          Now, the one wildcard in all of this could be Google. They are on the eighth generation of their TPU and have been holding their cards extremely close to the vest. I don't think anybody has a good read on exactly how much capacity they have. Most things you can kind of figure out the overall business numbers and what's going on in Google--the TPU area is one of the exceptions. I know a couple of big customers and even they don't have any visibility on that front.

  • wei_b0 8 hours ago ago

    is it the right time to perhaps switch to QwenCode ?

    i might end up cancelling claude, anybody else thinking of the same ?

    • Alifatisk 7 hours ago ago

      Already done it. But switched to Codex instead. See you on the other side buddy.

      • marak830 4 hours ago ago

        I'm oh so seriously tempted to switch at least for a month or two.

  • ulfw 3 hours ago ago

    AI is a commodity. This is proven now. And valuations will have to drop 90%.

    There's a lot of AI models that each 'win' one week over the next. The pure definition of a commodity market and not a 'winner takes all market' as valuations would imply

  • akhilchaturvedi 7 hours ago ago

    they release new qwen model every two weeks?

    • gilgoomesh 7 hours ago ago

      It's been 2.5 months since Qwen 3.7-Max. Unless you mean since the preview of this 3.8-Max model.

  • monegator 4 hours ago ago

    Now, if only we could afford a setup decent enough to run 2/3 instances at the same time...

  • ComputerGuru 9 hours ago ago

    Does the page actually load for anyone? I get stupid spa skeleton spinners.

  • fnord77 8 hours ago ago

    Tokenpocalypse canceled

  • esafak 9 hours ago ago

    Does anyone know how token- and reasoning efficient it is? The charts don't show how many tokens were used in any benchmark.

    • wmf 9 hours ago ago

      The imminent third-party benchmarks will cover that.

  • TacticalCoder 9 hours ago ago

    > In this case, Qwen3.8-Max was asked to create the oh-my-cli project from scratch and, over a 10+ day long-horizon autonomous coding run, build a self-evolving harness.

    They don't explain how successful that went but it's a bit hilarious seen that an Anthropic dev explained that it's been 15 days Claude was hard at work --with nothing to show yet-- trying to rewrite itself in another language.

    "You rewrite Claude Code, we rewrite oh-my-pi."

    "You're nowhere after 15 days, we do it in 10."

    Sure, it's apples to oranges and all that. But part of me thinks they know fully well what they did there.

  • whateveracct 9 hours ago ago

    ah so they distilled fable and sol, eh?

  • choppaface 10 hours ago ago

    “self-evolves through feedback loops”

    Does this mean they distilled Claude? Sounds like what Claude Code will often do.

    • Art9681 10 hours ago ago

      Of course they did.

      • choppaface 6 hours ago ago

        I mean sure but I’m curious to what extent and why it’s so obvious to some. I haven’t seen this sort of language in a marketing post before.

    • charcircuit 10 hours ago ago

      It's meaningless. Models have always been able to do this and this capability is strengthened during RL since being able to explore the solution space to figure something out will give it a reward.

      What is important is how long it can go without requiring human intervention. Not just that it's possible to run on its own for a time.

  • VladVladikoff 10 hours ago ago

    Are these latest Qwen models still open weights or has Qwen moved away from that?

    • a2dam 10 hours ago ago

      The second sentence of the page: "This also marks the first time we will open-source the weights of a Qwen-Max-class model — the open weights will be released next week."

      • VladVladikoff 10 hours ago ago

        Page won’t load for me it’s just grey bars fading back and forth forever.

        • Larrikin 9 hours ago ago

          You can always wait until the page loads before posting your thoughts on the Internet

          • Vaslo 7 hours ago ago

            Or let them just ask and if someone asking a question on the internet bothers you, just move along and ignore it.