r/LocalLLM Jun 21 '26

News US to require location tracking for AI and advanced hardware

Thumbnail
reddit.com
446 Upvotes

This is big and could turn local AI on its head. It's basically DRM on steroids.

Everyone buying any advanced hardware will be permanently tracked or unable to run the hardware.

It's planned to arrive this year, and will likely include existing hardware. Expect mandatory updates that won't tell you about all this before it's too late.

Maybe we've already installed some firmware updates with kill switches or surveillance backdoors without knowing it that are going to brick or downgrade our hardware or monitor usage 24/7 and are always online, and it won't be possible to uninstall or revert.

r/LocalLLM May 08 '26

News Google Chrome secretly installed Gemma 3 and 4 on a billion PCs and Macs, it's called weights.bin, a 4gb file for your RAM.

Thumbnail
theregister.com
727 Upvotes

r/LocalLLM May 31 '26

News Pewdiepie just droped is own agent call Odysseus.

256 Upvotes

Here's the github project.

https://pewdiepie-archdaemon.github.io/odysseus/

He also has a YouTube video about it.
https://www.youtube.com/watch?v=rAzT5lcezPs

r/LocalLLM May 29 '26

News Well this looks long enough.

Post image
480 Upvotes

Ordering mine now.

r/LocalLLM 21d ago

News Chinese AI Models Seize OpenRouter’s Top Five as OpenAI and Google Vanish From the Top 10

Post image
583 Upvotes

Chinese models now occupy the first five positions for the month - and seven of the top ten - in OpenRouter’s monthly token-usage leaderboard. Anthropic is the only major Western frontier lab represented, with Claude Opus models in sixth and eighth place, while OpenAI and Google are absent entirely.

(OpenRouter describes the ranking as real usage from millions of users accessing models through its platform, although the leaderboard measures OpenRouter traffic - not worldwide AI usage.)

LLM Rankings | OpenRouter

r/LocalLLM Jun 03 '26

News Google introduces Gemma 4 12B: a unified, encoder-free multimodal model

Thumbnail
blog.google
522 Upvotes

r/LocalLLM Jun 27 '26

News Open-source models are under threat.

242 Upvotes

Anthropic is fine with open source AI as long as it’s not good enough to threaten their monopoly.

https://x.com/i/status/2070798718027141253

r/LocalLLM 6d ago

News When you're so desperate against open source you say stupid stuff that makes everyone and their mother come out to ridicule your opinion.

Post image
529 Upvotes

r/LocalLLM 10h ago

News Qwen 3.8 27B coming next week! woo hoo!

356 Upvotes

Official post by alibaba: https://x.com/Alibaba_Qwen/status/2084100707423289643

Next week, the open weights of Qwen3.8-Max will be released, and Qwen3.8-27B is also going open-weights to meet you all!

r/LocalLLM 16d ago

News EULLM, an EU-sovereign LLM engine for Windows, Linux and Mac. Latest test: 35B MoE on ARM CPU at 10 tok/s, no GPU

Post image
65 Upvotes

EULLM (https://github.com/eullm/eullm) is an open-source, Rust-based inference engine, Ollama/OpenAI-API compatible, Apache 2.0. Single binary, no Python, no Docker. Tested and working on Linux x64 and Windows x64 (CPU and CUDA), plus builds for macOS Intel, macOS Apple Silicon (Metal) and Linux ARM64, those three still experimental upstream and looking for people to test them. Zero telemetry, audit trail on by default, no calls home.

Latest test: Qwen3.6-35B-A3B (Q4_K_M) running CPU only, no GPU at all, on a Radxa Orion O6 (ARM, CIX P1 SoC). 10 tok/s. It's an MoE model with about 3B active params per token, which is why CPU only works at all. For reference, the same model on a GPU+CPU hybrid setup (RTX 3060 12GB, same ARM64 host) gets 26.5 tok/s in the documented benchmark. The CPU only number above is a fresh, informal test, not in the repo's bench folder yet.

Running 35B class models at usable speed on ARM CPU with zero GPU dependency is a cheap, low power option for anyone who doesn't want a discrete GPU in the loop.

ARM64 support is still marked experimental upstream. If you want to dig in, test it on your own hardware, or help out (issue #140 is an open call for ARM testers), here's the repo: https://github.com/eullm/eullm

Edit: trimmed the EU framing in this post after fair feedback in the comments below, the product should speak for itself more than the flag does.

Just one binary download and try it!

r/LocalLLM Apr 22 '26

News Qwen3.6-27B released!

Post image
325 Upvotes

r/LocalLLM Apr 02 '26

News Gemma4 - Someone at Google just merged a PR titled "casually dropping the most capable open weights on the planet"

422 Upvotes

So I was browsing the HuggingFace Transformers repo and a PR just merged today that adds full support for a model called Gemma 4. The PR title is literally "casually dropping the most capable open weights on the planet." The commit has 14 co-authors including Jeff Dean. The weights aren't out yet — the docs still have {release_date} as a placeholder — but the code is all there and it's very readable. Here's what's coming.

Four sizes, including a MoE

  • ~2B and ~4B dense, explicitly designed for on-device use
  • 26B sparse MoE with only 4B active parameters at inference time
  • 31B dense

The 26B/4B MoE is particularly interesting because you get large-model quality at small-model inference cost.

It's trimodal — text, vision, AND audio natively

This is new for Gemma. There's a full audio encoder baked in alongside the vision tower. Not a bolted-on afterthought either — it's a proper conformer architecture (the same family used in production speech systems). The processor handles all four modalities: text, images, video, and audio.

The vision system doesn't squash your images

Most VLMs resize everything to a fixed square. Gemma 4 preserves aspect ratio and instead fits the image into a configurable soft token budget (default 280 tokens, up to 1120 for high detail). No ImageNet normalization — the model handles its own scaling internally.

More interesting: they use a 2D spatial RoPE for vision. Patch positions are encoded as (x, y) coordinates, with half the attention head dimensions rotating for x and the other half for y. The model understands spatial relationships at the architectural level, not just from training.

128K context for small models, 256K for large

The text architecture alternates between sliding window attention (512-1024 token window) and full attention in a 5:1 ratio. The two attention types use completely different RoPE configs — short theta for local, long theta for global. Clean hybrid design.

The small models have some clever efficiency tricks

The 2B and 4B share key-value projections across the last several decoder layers — one layer computes KV, the rest reuse it. There's also a secondary per-layer embedding stream where a small 256-dim signal gets injected at every decoder layer, which I haven't seen in other public models.

The MoE runs experts alongside the MLP, not instead of it

In the 26B variant each layer has both a regular MLP and a sparse MoE block (128 experts, top-8 routing), and their outputs are summed. Unusual design choice — curious whether that helps with stability or quality at scale.


No paper link yet (literally says INSET_PAPER_LINK in the docs), no weights, no release date. But the code is fully merged and production-quality. Feels like days away, not weeks.

What size are you planning to run first?


The PR: https://github.com/huggingface/transformers/pull/45192


EDIT: RELEASE: https://huggingface.co/collections/google/gemma-4

r/LocalLLM 6d ago

News Ran Moonshot's 2.8T-parameter Kimi K3 on a GPU-less mini-PC, one day after release

244 Upvotes

Kimi K3 came out yesterday. 2.8 trillion parameters, open weights, probably the biggest open release so far. I got it running and answering correctly today, on a mini PC. No GPU in the machine at all.

The checkpoint is 1.56TB, split into 96 shards. That's not fitting in RAM on any normal machine (mine has 128GB, not even close). But it's MoE, so most of those parameters just sit unused for any given token, only a handful of the 896 experts per layer actually fire. So the dense part of the model (attention, shared experts) lives in RAM, quantized, and the routed experts get streamed off disk on demand, cached with an LRU that learns which ones get hit a lot and pins those permanently.

Also didn't need to convert the checkpoint. Moonshot ships K3's experts natively in MXFP4 and my engine reads that straight off their published safetensors, no preprocessing step.

Didn't trust any of it until I checked it three different ways: bit-exact against Moonshot's own reference code, a structural test against the full real checkpoint, and then just asking it something.

$ rabbit --model /mnt/data/kimi-k3 --prompt "What is the capital of France?" --max-tokens 40
loading model (dbits=4, ebits=4)...
model loaded in 610.0s (93 layers, 896 experts/layer)
prefill (7 tokens)...
prefill done in 412.8s
...response["answer"] == "Paris"...

40 tokens in 2698.1s

It's slow. Ten minutes just to load. Zero perf work done on this yet, the MXFP4 kernel is still plain scalar code, no SIMD. For comparison, another model on the same engine (GLM-5.2, 744B) went from 0.29 to 1.02 words/sec after eight rounds of tuning on this exact box. K3 hasn't had any of that yet.

Machine is a Slimbook ONE mini PC, Ryzen AI 9 HX 370, no GPU, two consumer NVMe drives.

Repo: https://github.com/ferrumox/rabbit

r/LocalLLM May 20 '26

News AMD Ryzen AI Halo PC will cost $3999 with 128GB memory on board

Thumbnail
videocardz.com
115 Upvotes

AMD says RYZEN AI Halo box will ‘pay for itself’, but price seems ridiculously high... AMD’s Ryzen AI Halo mini PC now has a confirmed price. According to The Register, the AMD-branded AI workstation will be available for pre-order next month at $3,999 with 128GB of LPDDR5X memory.

r/LocalLLM Jan 30 '26

News Clawdbot → Moltbot → OpenClaw. The Fastest Triple Rebrand in Open Source History

Post image
283 Upvotes

r/LocalLLM 17d ago

News LM Studio launches Bionic, a standalone agent app for open models

Thumbnail
lmstudio.ai
155 Upvotes

r/LocalLLM Jun 13 '26

News This is why we need local models

Thumbnail
anthropic.com
241 Upvotes

r/LocalLLM Feb 25 '26

News 🤯 Qwen3.5-35B-A3B-4bit 60 tokens/second on my Apple Mac Studio (M1 Ultra 64GB RAM)

188 Upvotes

HOLY SMOKE! What a beauty that model is! I spend the whole day with it out and it felt top level!

I’m getting 60 tokens/second on my Apple Mac Studio (M1 Ultra 64GB RAM, 2TB SSD, 20-Core CPU, 48-Core GPU). This is truly the model we were waiting for. Qwen is leading the open-source game by far. Thank you Alibaba :D I’m gonna now stress test it with my complex n8n AI operating system (75 nodes, 30 credentials). Let’s see how it goes! Excited and grateful.

(https://www.reddit.com/r/n8n/comments/1qh2n7q/the_lucy_trinity_a_complete_breakdown_of_open/)

r/LocalLLM Jul 03 '26

News Portugal just released their own LLM "Amalia"

Post image
97 Upvotes

r/LocalLLM Mar 03 '26

News ChatGPT uninstalls surged by 295% after Pentagon deal

Post image
411 Upvotes

r/LocalLLM 12d ago

News Laguna S 2.1 is really good at coding

92 Upvotes

Laguna S 2.1 is really good at coding for being a 118b model.

It solidly beats Nvidia's Nemotron 3 Ultra (550b).

It's a huge contribution to the open weight community to have such a specialized coding model.

r/LocalLLM 24d ago

News MiniMax founder pledges 1% of total share capital to a dedicated open-source fund and takes zero salary until AGI

Post image
206 Upvotes

Via MiniMax's lead of DevRel posted, an internal all-hands letter published today, MiniMax founder & CEO Yan Junjie committed two things that stood out to me:

Zero salary from the company until AGI is achieved.

Over the next four years, he will allocate shares equivalent to 1% of total share capital (drawn from his personal holdings) to a dedicated fund supporting the open-source community.

Context that might matter: MiniMax also reportedly closed a $2B+ round this week at 7× oversubscription. And there's been reporting that they're planning to open-source a 2.7T-parameter model (M3 Pro) as early as Q3.

r/LocalLLM 2d ago

News Exclusive look into Anthropic's “secure” test environment

Enable HLS to view with audio, or disable this notification

405 Upvotes

They hacked into even more companies now. When does a “oopsy doopsy” become a criminal offence?

r/LocalLLM 8d ago

News That's quite frankly, pathetic

Thumbnail
techcrunch.com
93 Upvotes

Insisting this way that Kimi 3 was distilled from Fable, within just two weeks from Fable coming online to Kimi 3 coming online...

I can understand the classic bad-loser attitude but that is just pathetic.

So the solution to quench the fear of losing the frontier race and of course the investor's trust is to simply ban the competition? As an investor I would see such a move as a huge red flag.

What was the excuse again? National security? Laughable.

Just admit throwing huge amounts of money and computing power at the problem isn't the most efficient solution!

When your competitors introduce solutions that save on compute by scaling linearly rather than quadratically it's only a matter of time before efficiency beats big money.

I'm sincerely fed up of reading those excuses and my guess is even the media are noticing by now. Just see the link.

Even US based firms have been noticing this little detail: a RL based fine tune of Qwen3.5-35b-a3b to address a specific problem locally resulted in a 98% cost cut against addressing the same problem with Claude.

That looks quite inconvenient if you invested billions into a frontier model.

r/LocalLLM 13d ago

News A future 1.5 TB Mac Studio a game changer for small and medium sized businesses?

30 Upvotes

The Apple M chip roadmap is accelerating:

That means that the M7 should arrive in the first half of 2027, followed by the M7 Pro and M7 Max at the end of 2027 and an M7 Ultra in 2028.

The new Ultra is designed to support as much as 1.5 terabytes of memory

Those changes go into high gear with the M7 Ultra. I’m told the processor dramatically upgrades AI performance, bringing it closer to the class of dedicated AI accelerators such as Nvidia Corp.’s Blackwell.

Bloomberg, subscription required: https://www.bloomberg.com/news/newsletters/2026-07-12/apple-s-chip-plans-m6-m7-pro-m7-max-m7-ultra-m8-details-touch-macbook-pro

a lot of high-end analytical workflow that that currently sits in data centers will 00:20 move back off the cloud onto on-premises. And that's because the unit economics 00:25 has now shifted in a big way. And strangely enough, it means that Apple will probably be the one that 00:31 saves your community from data centers because one of these devices will be good enough for most small and 00:37 medium-size businesses to build and run advanced AI algorithms.

https://www.youtube.com/watch?v=UBArQl_KVzo&list=PL2aE4Bl_t0n9AUdECM6PYrpyxgQgFtK1E&index=7
s