This week brought two permissively-licensed agentic releases: Alibaba's Accio team shipped Occamy-1.0, an open-weights agent with vendor-reported frontier co-work scores (TechTimes, September 15, 2026), and Shanghai AI Lab released Atria Dawn Preview, a 744-billion-parameter agentic model under a permissive licence (GenAI Daily, September 17, 2026; Lycoris Technologies, September 16, 2026; paper at arXiv 2609.15818). Add the RSIAgent result, a training-free harness that lets open models beat a frontier closed model on agent benchmarks (arXiv 2609.15364), and solo builders face a practical question our digests only mention in passing: what can you actually download, run, and build on? This page is the evergreen answer. If you want the one-paragraph definition of the compression that makes local runs fit, start with what quantization is.

Open weights is a download; open source is a licence

"Open weights" means the trained weight files are published for download, usually with a licence file attached. "Open source" means much more: the Open Source Definition maintained at opensource.org sets licence criteria, and a fully open release would also share the training data recipe and the training code. Most "open" model releases sit somewhere in between: downloadable weights, a licence ranging from permissive to restrictive, and the data and training pipeline withheld. Atria Dawn Preview illustrates the permissive end: coverage describes it as shipping under an MIT-style licence (GenAI Daily), so treat the licence file in the release, not the headline, as the source of truth. Before you build on any release, read three things: the licence text (commercial use? attribution? redistribution of fine-tunes?), the model card (what data it saw, what it was never tested on), and whether the weights are actually hosted somewhere you can pull them from or only described in a paper.

Why builders care: your card, your rules

Downloadable weights change the economics of a one-person shop. Self-hosting removes per-token fees, keeps customer data on your own disk, and lets you freeze a version instead of waking up to a silently updated API. That is why the local stack on this site exists: embeddings on consumer GPUs keeps semantic search resident beside your chat model, and RAG on your own machine closes the retrieve-then-write loop, both without a single API call. Open weights are the missing first step of that loop: the model itself, running where you live.

The VRAM math: total versus active parameters

Mixture-of-experts releases quote two numbers, and only one decides whether the model fits your card. Total parameters must all be stored in memory; active parameters are the subset consulted per token, which sets speed and per-token cost instead. Estimate fit with one multiplication: total parameters times bytes per parameter, plus headroom for context. The per-level bytes come from quantized models explained: roughly two bytes at full precision, about half a byte at 4-bit.

Occamy-1.0 is vendor-reported as a 35-billion-parameter MoE with about 3 billion active parameters (TechTimes). At full precision 35 billion parameters need about 70 GB, which no consumer card holds; at 4-bit the same weights need roughly 17 to 18 GB, which fits a 24 GB card with room for context. The 3-billion-active figure does not shrink that footprint: it tells you the model should answer briskly once loaded, not that it loads small. Atria Dawn Preview is coverage-reported as a 744-billion-parameter MoE with about 40 billion active (GenAI Daily; Lycoris Technologies). At full precision that is on the order of 1.5 TB of weights, and even at 4-bit it stays near 370 GB: datacenter territory, downloadable but not self-hostable on a desk. Same math, opposite verdicts, which is exactly why the two numbers must never be confused.

The third datapoint needs no download at all. RSIAgent is a training-free harness: curriculum, actor, and verifier agents explore an environment, validate outcomes, and freeze reusable environment knowledge without updating any model weights, and the paper reports open models (Kimi-K3, GLM-5.3) outperforming frontier closed models including GPT-6 on OSWorld-v2 and Agent's Last Exam (arXiv 2609.15364; also covered at Singularity Moments, September 16, 2026). The lesson for builders: the harness around open weights can matter more than the weights themselves.

Trust checklist: licences and numbers

Two habits keep you honest. First, separate vendor-reported numbers from independent ones. Occamy's frontier co-work scores are vendor-reported (TechTimes); Atria Dawn's paper claims competitive frontier-agent scores with the highest reported score on five of sixteen benchmarks (arXiv 2609.15818), which is a peer-readable claim you can check, not a trophy you should quote. Second, treat viral provenance chatter as rumor until a primary source exists: unverified claims about where a model's capabilities were distilled from circulate with every major release, and repeating them as fact is how a builder blog loses reader trust. Licence file, model card, downloadable weights, reproducible numbers: in that order.

Keep going

Weights you can download still need the rest of the local stack. Next read quantized models explained for the per-level VRAM table, then embeddings on consumer GPUs and RAG on your own machine for the full private loop. The glossary companions are quantization, RAG, and embeddings, and the whole series lives under the local-AI topic.

← Back to the journal