MiniMax publishes open weights for H3 but licenses out the US, EU, UK and Korea
MiniMax published open weights for H3, its 33B omni-modal video model, under a community licence that excludes the US, the EU, the UK and South Korea from its Applicable Territory. Three independent papers landed the same day measuring what agent scaffolding actually costs: prompt wording alone multiplies reasoning spend 2.4-7.4x with no gain in correctness, harness choice swings cost per success by 5-30x, and orchestration buys at most 4.6 percentage points for two to four times the tokens. The first production-scale characterization of agentic coding — 3.2M GitHub Copilot users, 95 trillion tokens — puts numbers under the serving assumptions all of that rests on.
Model Releases #
MiniMax-H3 #
MiniMax / ComfyUI / Hacker News (300 points)
H3 is a 33-billion-parameter dense single-stream transformer that generates 4-15 second clips at up to 2K resolution with native stereo audio produced in the same pass rather than dubbed on afterwards, accepting text, image, video and audio as input and supporting first-and-last-frame control and reference-based motion transfer. Roughly 13B of the parameters sit in AdaLN modulation branches whose outputs can be precomputed, so the minimum working download is 42.5 GB against 123.6 GB at full precision, and ComfyUI shipped native support with three workflow templates on the same day. The licence is the part worth reading before the model card: commercial use requires displaying “MiniMax H3” in the product UI, revenue above $20 million annually requires prior written authorisation, outputs may not be used to improve any other AI model, and the Applicable Territory excludes the EU, UK, South Korea and United States outright. MiniMax attributes the territorial carve-out to the EU AI Act, evolving UK and Korean rules, and US copyright litigation over generative video — the reasoning being that open weights cannot enforce safeguards downstream, so the legal grant was scoped instead of the release delayed. Residents of the excluded regions are pointed to separate licensing or the hosted API, which means the four largest Western AI markets have access to a model they cannot legally deploy from the weights everyone else can download.
Research & Papers #
Agentic Coding in the Wild: Characterizing GitHub Copilot Traces at Production Scale #
arXiv (cs.AI)
The first production-scale characterization of the agentic coding workload, drawn from sampled GitHub Copilot traces in June 2026 covering 3.2M users, 13M sessions, 761M LLM calls and 95 trillion tokens. The structural finding is that sessions consist of sparse user-initiated turns, each unfolding into an autonomous loop of LLM calls almost always paired with tool execution, which yields KV cache hit rates averaging 90% within a turn but 55% across turn boundaries, collapsing entirely after a model switch or a context compaction. The authors also measure the asymmetry between fast agent turnaround and minutes-long user idle periods at turn boundaries, and build a lightweight idle-time predictor capturing 86-90% of total idle time. If you are sizing inference capacity for a coding agent, the 90%-within-turn/55%-across-turn split is the number that invalidates a chatbot-derived serving model.
Prompt-Induced Waste in Large Reasoning Models: A Preregistered Two-Harness Benchmark of Coding Agents #
arXiv (cs.CL)
A preregistered study across six reasoning models, two real agent harnesses and 24 deterministic coding tasks with hidden evaluators, totalling 4,643 valid runs including screening, stress, holdout, replication and cross-provider arms. Asking a model to develop and compare several approaches — the single most common “make it think harder” instruction — increased reasoning tokens by 2.4-7.4x across every model with no improvement in correctness; generic “think deeply” cues added 1.6-2.2x; a bounded-efficiency template specifying scope, acceptance criteria and a stop condition was cost-neutral and sometimes halved reasoning. Harness choice dominated prompt choice: identical model-task-prompt triples cost 5-30x more per success under Claude Code than under pi, mostly from larger static prefixes and more turns. The authors also flag that provider-side caching lowers the bill without changing behaviour, so it must not be counted as an efficiency gain — a distinction worth enforcing in any internal cost dashboard.
When Does LLM Orchestration Pay Off? A Controlled Evaluation of Accuracy, Cost, and Task Difficulty #
arXiv (cs.AI)
Self-Refine, Best-of-N and Debate were compared against task-only and chain-of-thought single-call baselines across five backbones and three domains — competitive programming, chess puzzles and mathematics — with every method optimised by GEPA under an identical budget so that optimisation effort could not be confounded with orchestration. The largest average gain was 4.6 percentage points over optimised CoT and 4.5 over task-only, at roughly two to four times the mean total tokens. Two secondary results matter more than the headline: orchestration effects did not increase with human-rated task difficulty within any benchmark, contradicting the usual justification for reserving it for hard problems, and mixed-effects analysis found strong method-by-backbone interactions in all three domains, meaning a scaffold validated on one model tells you little about another. The controlled-optimisation design is what makes this readable as evidence rather than another leaderboard.
Control Under Compression: Reliability Frontiers for Tool-Using Agents #
arXiv (cs.AI)
CompressAgent is an environment-verified benchmark for compressing agent control contexts — the persistent system-side instructions specifying tools, arguments, policies, execution protocols and recovery — across nine independently constructed contexts, three task families, three fixed Qwen model identifiers, six retained-context budgets and 15,525 runs. At 75% retained context, generic rewriting and section-based compression hold 92.7% and 92.4% success against a 93.8% full-context baseline; between 50% and 35% the methods diverge sharply, and at 35% they score 47.0%, 39.0% and 19.9% respectively. Below 25% retention executable protocols become fragile, and failures surface predominantly as tool-execution and action-parsing errors rather than as degraded reasoning. Reliability varied enough across the nine contexts that the authors argue against universal compressor rankings and for per-context qualification, which is the operationally useful conclusion: context compression is a runtime-reliability change, not a token-budget change, and it needs to be tested by execution.
ScrambleToolBench: Agents Search Exhaustively Even When Their Own Map Points to the Next Step #
arXiv (cs.CL)
An interactive terminal benchmark that strips semantic cues from tool schemas so agents must infer tool behaviour purely through trial-and-error, then perturbs the environment mid-task with mapping drift, stochastic action failures and temporal execution windows. Successful initial discovery did not predict robust adaptation: when the mapping changed underneath them, agents failed to apply deductive strategies such as cycle tracing and instead showed belief inertia or reverted to exhaustive search. The finding with the sharpest practical edge is that increasing test-time reasoning amplified the brute-force search rather than enabling deductive recovery, and persistent memory reduced compounding errors without helping agents infer the structural change. For anyone budgeting reasoning tokens as a remedy for agents that get lost, this says the extra tokens buy more of the same behaviour.
Security #
Why Formal Monitors Fail: Attack Distribution Entropy as a Coverage Bound for LTL-Based LLM Agent Safety #
arXiv (cs.AI)
Runtime monitors built from linear temporal logic and finite-state automata to intercept unsafe tool-call sequences achieve 68-75% attack coverage on some model backends and near-zero on others, and this paper proves why. The recall of any fixed-invariant FSA monitor is bounded above by the concentration of the attack distribution — the fraction of attacks covered by the k most frequent trigger-completion patterns — so when attacks concentrate at low Shannon entropy a small invariant set suffices, and when they disperse no fixed invariant set of tractable size can cover them regardless of derivation. Validated across eight frontier architectures: GPT-class and DeepSeek backends produced highly concentrated attacks (H ≈ 0.24 bits, one pattern covering 96%) explaining 68-75% recall, while Gemini variants produced H ≈ 2.81 bits across seven clusters none above 7%, explaining 6-13% recall that survived architecture-matched retraining. Entropy accounted for 76% of variance in coverage (r = -0.87, p = 0.005), and the authors derive a pre-deployment entropy test that predicts monitor coverage from a small attack sample. The consequence for anyone shipping a rule-based agent guardrail is that its effectiveness is a property of the model behind the agent, not of the rules.
An AI-Supervised Remote Exam Went So Badly That 58,000 Students Must Retake It #
Ars Technica / NPR
UNAM, Mexico’s largest university, ran its entrance exam fully remotely for the first time from late May to early June, with roughly 160,000 applicants sitting it under a lockdown browser and AI webcam proctoring. The score distribution broke: between 2021 and 2025 an average 3.5% of candidates scored 100 or more out of 120 and 0.9% scored 110 or more, while this year those figures were 16.3% and 5.5%. An expert commission concluded the results were unusable and ordered a retake for the roughly 58,000 applicants still in contention; AI researcher Raúl Rojas told NPR that statistical modelling implied close to half the cohort cheated against about 2% actually detected. The circulating techniques were mundane — position a second monitor outside the camera frame to reach ChatGPT, hide earphones under hair, hire a proxy off-camera — which is the point worth carrying: the proctoring model failed not to a novel attack but to the ordinary consequence of putting a capable assistant on the other side of a camera’s field of view.
Developer Tools #
How We Built a Realtime System for Responsive Voice AI in Six Months #
OpenAI
OpenAI published an engineering retrospective on GPT-Live, its third-generation voice stack, whose central architectural decision is removing the turn detector from the audio path entirely: the voice model is full-duplex, listening and speaking simultaneously, so the system no longer needs a separate component deciding when the user has finished. That is what produces the backchannel behaviour — “mhmm”, “yeah”, or staying quiet while someone thinks — since those require the model to emit while still receiving. When a request needs deeper reasoning or tool use, GPT-Live consults a frontier model such as GPT-5.5 without stalling the conversation, which is the two-tier pattern most production voice agents converge on independently. We could not fetch the full post (openai.com returned 403 to our fetcher), so the latency figures and the training details behind the turnless model are not summarised here; the account above is drawn from OpenAI’s own published description.
Automated Reasoning Policy Refinement in Amazon Bedrock #
AWS
Bedrock’s Automated Reasoning checks translate natural-language policy documents into formal logic and validate model outputs against them; the new refinement engine diagnoses failing tests in that formal layer and proposes fixes. It splits the failure into two kinds. Iterative refinement handles rule issues, where variable assignment was correct but the logic produced the wrong finding, and proposes new, edited or deleted rules from the source documents plus optional natural-language feedback. Ambiguous variable refinement handles language issues, where a test returns TRANSLATION_AMBIGUOUS because competing readings of a variable lead to different outcomes, and proposes sharper descriptions or merges overlapping definitions. Every proposal is shown against the full saved test suite — which tests move from failing to passing, and which regress — before it can be accepted, and AWS quotes up to 99% verification accuracy on unambiguous translations. The honest framing is that this automates the tedious part of maintaining a formal specification, not the judgement of whether the specification is the right one.
Infrastructure #
Smaller, Faster, Safer: Running Kimi and GLM at Scale #
Cloudflare / Hacker News (223 points)
Cloudflare shipped three changes across its Workers AI fleet for Moonshot’s Kimi K-series and Z.ai’s GLM models. Quantizing the KV cache from BF16 to FP8 on Kimi K2.6 doubled cache capacity from 686,000 to 1.37 million tokens, raised peak throughput at 64 concurrent requests from 1,558 to 2,192 tokens per second (about 41%), and cut cost per token roughly 30%, with benchmark differences under 1%. Compressing GLM 5.2 weights from INT8 to INT4 took the model from 705 GB to 421 GB and per-GPU memory from 88 GB to 52 GB, gaining 55% decode throughput at single-request concurrency and 16-27% across concurrency levels while staying within 0.8 points on benchmarks. The third change adds integrity checking on shared cache pages at under 1% overhead — worth noting alongside the other two, because cache sharing across tenants is exactly the surface where a throughput optimisation becomes a correctness question.
Open Source #
Swiftlet: Expert Streaming for Large MoE Models on Apple Silicon #
Swiftlet / Hacker News (195 points)
A Swift and Metal runtime that runs Qwen3-Next-80B-A3B in 4.3 GB of peak RAM on a Mac and Qwen3.6-35B-A3B in about 2.5 GB on an iPhone, by exploiting the fact that only about 3B parameters are active per token in these MoE models. Dense layers — attention, routers, embeddings — stay resident while thousands of routed experts are repacked into a fixed-stride .qpack container that permits single-read fetches from SSD via pread, with a bounded LFU-plus-recency cache hitting 43-70%. The measured numbers are 4.5-5 tok/s for the 80B at 42 GB on disk and 7-11 tok/s for the 35B at 18 GB on an M5 Mac, dropping to roughly 1 tok/s for the 35B on iPhone. The author states the tradeoff plainly rather than burying it: with 3B active parameters these models “chat and write like large models but recall facts like small ones”, so this buys local fluency, not local knowledge.
Open-Weight Models Aren’t Enough. We Need Truly Open Source AI Models for Science and Society #
Stanford HAI
James Landay, HAI’s Denning Director, argues that downloadable weights answer “can I run this?” while leaving “can I trust this, improve it, and build the next thing?” unanswered, and proposes a concrete bar rather than a sentiment: alignment with the Linux Foundation’s Model Openness Framework at its Open Science tier, which requires releasing code, training data or auditable documentation of it, and tooling — not only weights. The argument is anchored on the transformer and attention themselves having come out of published research that anyone could build on, and on the fragility of the alternative, citing Anthropic models forced offline under Commerce Department export controls. The recommendation is that universities, not labs, should build genuinely open frontier systems. Read against MiniMax’s release the same week, the piece is describing the ceiling of the current arrangement from the other side: H3’s weights are downloadable and its training data, code and legal reach are not.
Regulatory & Policy #
Trump’s AI Protectionism Has Come for Robotics #
MIT Technology Review / CNN / Al Jazeera
The FCC’s 29 July ban on imports of new Chinese-made humanoid robots, robot dogs and power inverters was justified on cybersecurity and critical-infrastructure grounds and takes effect only for models not already authorised for US sale — a caveat that largely spares Unitree, which cleared its R1 on 22 June and its H2 and A2 quadruped on 30 June. The new information in this analysis is the research dependency the ban runs into: Aaron Prather’s figure that 90% of recent US university robotics papers relied on Unitree hardware, against a price gap of roughly $4,600 for a Unitree quadruped versus about $278,000 for a comparable Boston Dynamics unit. The domestic beneficiaries named are Ghost Robotics, Boston Dynamics, Figure and 1X, and the argument is that restricting cheap research platforms slows the domestic industry it is meant to protect. China holds an estimated 85% of the global humanoid market, so the policy question is whether a US supply chain can be built faster than the research base erodes.
Funding & Business #
After Killer Quarter, Palantir CEO Alex Karp Calls AI Industry ‘Marxist’ #
TechCrunch
Palantir reported Q2 2026 revenue of $1.9 billion, up 93% year over year, with $1.1 billion in profit — more than its entire revenue in the same quarter last year — and raised full-year guidance to 82% growth. In the 3 August shareholder letter Karp wrote that “there are Marxist overtones and undertones to our business” and that others building large language models “intend, knowingly or otherwise, to capture the means of production”, elaborating on the earnings call that frontier labs persuade enterprises to share proprietary data and expertise which is then absorbed into the labs’ own competing products. The claim is self-serving — Palantir sells model-agnostic deployment and data sovereignty, so this is the pitch — but it is a coherent statement of the commercial objection to model-layer consolidation, made by the vendor with the quarter to back the position.
Apple Is Getting This Wrong #
OpenAI / Forbes / 9to5Mac
OpenAI published a point-by-point rebuttal to Apple’s July trade-secrets suit over the hiring of former Apple staff, opposing Apple’s request for a preliminary injunction on the grounds that it is “based on false information and completely unnecessary because we do not have, nor want, any of their trade secrets.” Two of the specifics are checkable and unflattering: Apple’s claim that it contacted OpenAI in February and got no reply now rests on Apple’s outside lawyers having emailed the wrong person after confusing two similar surnames, which Apple conceded only after OpenAI raised it; and on Chang Liu, accused of accessing Apple confidential information after departing, OpenAI says Apple employees had asked him to help locate it, with the residual access arising from Apple’s own offboarding. OpenAI published supporting messages alongside the post. For an industry where the primary asset is a few hundred people who have all worked somewhere else, how this injunction motion is decided will set the practical limit on lateral hiring far more than the eventual merits will.
Threads to Watch #
Three papers, one number: the scaffolding is the cost. Prompt-Induced Waste found harness choice swinging cost per success 5-30x on identical model-task-prompt triples, and “compare several approaches” adding 2.4-7.4x reasoning tokens for nothing. The orchestration study found Self-Refine, Best-of-N and Debate buying at most 4.6 points for two to four times the tokens, with no relationship to task difficulty and strong method-by-backbone interaction. Control Under Compression found the reverse operation — trimming the control context to save tokens — dropping success from 93.8% to 47.0% at 35% retention. Read together they describe a system where the model is not the variable under your control and the scaffolding is, and where the scaffolding’s effects are large, model-specific, and mostly measured by nobody. All three also independently conclude that the measurement has to be by executed outcome, not by proxy: hidden evaluators, environment verification, equalised optimisation budgets. That is a more demanding evaluation standard than most teams currently apply to their own prompt and harness changes.
Guardrails inherit the model’s failure distribution. The entropy-coverage proof is the sharpest version of a point that keeps recurring: a fixed set of LTL invariants recalls 68-75% of attacks against GPT-class and DeepSeek backends and 6-13% against Gemini, and no amount of rule engineering closes that gap, because the bound is set by how concentrated the attack distribution is rather than by the rules. Swap the model behind your agent and your guardrail’s coverage changes without anything in your code changing. Set that beside UNAM’s proctoring failure, where an AI supervision layer was defeated by a monitor placed outside the camera frame, and the shared structure is that both controls were specified against an assumed distribution of behaviour and evaluated against nothing else. The paper’s pre-deployment entropy test is the useful half — a way to find out which regime you are in before shipping, rather than from the coverage numbers afterwards.
Open weights are acquiring jurisdictions. MiniMax released H3’s weights while excluding the US, EU, UK and South Korea from the licence grant, citing the AI Act, UK and Korean rules, and US copyright litigation — reasoning explicitly that since open weights cannot carry enforcement downstream, the legal grant gets scoped instead. On the same day Stanford HAI argued from the opposite direction that weights alone were never the meaningful threshold, and that code, data and tooling are what make a release open in the sense that matters. Both are describing the same erosion. “Open weights” has functioned as a single binary for two years, and it is now carrying a licence tier, a revenue cap, a distillation prohibition and a map of where you may deploy. Anyone maintaining an approved-models list should expect the legal review to become as load-bearing as the benchmark review.