Quick Hits — September 6, 2026

Share
Quick Hits — September 6, 2026

The late round: OpenAI puts numbers on how much of its own research is now done by agents, Europe finally gets a commercial rocket into orbit, and a frontier model starts moonlighting as a teacher for open ones.


OpenAI says its research org now runs 3.1 agent-workdays for every day of human labor — and it has hit the "automated research intern" goal it set last fall. In a long post on measuring research acceleration, the company says the median researcher went from barely using coding agents in January to spending more than $600 a day on inference at API prices by mid-August, with the 90th percentile researcher above $7,000 a day. Experiments per active experimenter hit an all-time high in August, and using Epoch AI's taxonomy of AI R&D work, the biggest agent categories are research and infrastructure code, technical help, and watching training runs — high-level planning is still a sliver. The honest caveats belong to OpenAI itself: over half of successful four-to-eight-hour tasks still needed at least one human intervention, and success at a task is not the same as progress in research. The take: the headline number is a labor-substitution figure, not a capability one — and "agents now write more of the code" is a very different claim from "the lab is three times smarter."


Isar Aerospace became the first European company to reach orbit on a fully commercial launch. Its 28-meter Spectrum rocket lifted off from Andøya Spaceport in northern Norway on Saturday evening and put payloads into orbit roughly seven minutes later, on what was only the company's second flight. CEO Daniel Metzler called it "sovereign access to space" for Europe; Ars Technica notes the eight-year, roughly $1 billion path from a Technical University of Munich student workshop to a near-500-person company, with vehicles three through seven already in production and a Nova Scotia launch complex under construction. The take: launch was the bottleneck everyone agreed on and nobody had fixed — and a continent that has been arguing about AI sovereignty just got a real option for the satellites that AI buildout depends on.


Travis Kalanick's Atoms is reportedly building robotaxi technology, and has discussed it with Uber. The Financial Times reported Sunday that the startup — which raised $1.7 billion led by Andreessen Horowitz this summer — is preparing a hiring spree and acquisitions aimed at the autonomous vehicle industry, and has talked to Uber about using its tech; Uber has already invested $100 million. Sources told the FT that robotaxis are not the whole plan, and the company has previously denied having robotaxi ambitions. The connective tissue is personnel: Atoms acquired Pronto, the autonomous-mining startup run by Anthony Levandowski, Uber's former self-driving chief. The take: "unfinished business" is Kalanick's own framing, and it reads as an attempt to own the thing he lost control of — the difference this time is that Uber can afford to be the customer rather than the battleground.


llama.cpp merged support for Spark 2.5, a small open model built for hybrid attention. The merged implementation covers the Chinese-developed architecture end to end — conversion to GGUF, tokenizer support, and the inference graph — and the model's design is the interesting part: a fused attention projection with a per-head sigmoid output gate, layers that alternate between sliding-window and full attention, and per-layer tuning of the positional-encoding dimensions, with no new low-level operators required. Weights for 1.7B and 4B versions are on Hugging Face under an Apache-2.0 license, and the GGUF builds have been downloaded tens of thousands of times. The take: the small-model race is now being fought on attention design rather than parameter count — sliding windows plus a gate is how you buy a long context on hardware that can't afford one.


A training-free routing tweak for mixture-of-experts models makes them think shorter, and a developer shipped it as a llama.cpp fork. The method, described in a preprint by Vincenzo Agrillo, expands how many experts a token can consult, but only in the later layers, and scales down the contribution of the extra ones. Tested on a 35B MoE model across the full 714-question MMLU-Pro set, answers that were correct under both settings arrived with about 8.5% fewer reasoning tokens and roughly 11% less latency, with overall accuracy statistically unchanged. A community branch now implements it for local inference, and the author is asking for testing on hardware other than Apple silicon. The take: a free 10% latency win from a routing change is the kind of result that either holds up everywhere or is very specific to one benchmark — and right now nobody outside the author has run it.


A r/LocalLLaMA user says the fastest way to teach an open model a hard skill is to let a frontier model coach it, not to fine-tune it. The workflow: an agent watches a locally-run Qwen model attempt a 3D sculpt in Blender, reads the reasoning, corrects it, and saves the corrected path as a plain Markdown file the open model loads next time — geometry, take a screenshot, correct, repeat. The poster reports meshes that needed 14 or 15 attempts before converging, and that the durable artifact is the Markdown, not the model. The take: this is the same loop Anthropic just moved to block at the API layer, done by hand and published in the open — the frontier lab pays for the tuition and the local model keeps the notes.


Sources: OpenAI — Research acceleration: The view inside OpenAI · Isar Aerospace (press release) · Ars Technica · Financial Times — 'Unfinished business': Kalanick revisits robotaxis · TechCrunch · llama.cpp PR #27868 · Spark-X2.5-4B (Hugging Face) · Zenodo — Layer-Scoped Expert-Budget Expansion · r/LocalLLaMA — Expert expansion with llama.cpp · r/LocalLLaMA — GPT Astra teaching Qwen Next in Blender