Four separate research releases published in May 2026 point to the same pressure point in AI development: the cost and speed of training and running models at scale. The advances span multi-agent communication, pre-training efficiency, model compression, and video reasoning — each delivering measurable reductions in compute time or token spend without requiring new hardware.
RecursiveMAS Replaces Text with Embeddings Between Agents
Researchers at the University of Illinois Urbana-Champaign and Stanford University published RecursiveMAS, a framework that reroutes communication between AI agents through embedding space rather than generated text. Standard multi-agent systems pass text sequences between agents, which adds latency, consumes tokens, and makes end-to-end training difficult because each agent’s model weights remain independent and static.
RecursiveMAS eliminates that bottleneck. By transmitting dense vector representations instead of decoded tokens, agents share information at a fraction of the cost — and the entire system can be trained jointly rather than agent-by-agent.
According to VentureBeat’s coverage, experiments show the framework achieves 2.4× faster inference and 75% lower token usage across code generation, medical reasoning, and search tasks. Training costs also fall well below standard full fine-tuning and LoRA methods, which the researchers describe as making RecursiveMAS a scalable blueprint for custom multi-agent deployments.
The key architectural insight is that text-based inter-agent communication was never a technical requirement — it was a default inherited from single-agent design. Removing it unlocks both efficiency and trainability gains simultaneously.
Nous Research’s Token Superposition Cuts Pre-Training Time by 2.5×
Nous Research released Token Superposition Training (TST), a pre-training method that reduces wall-clock training time by up to 2.5× without modifying model architecture, optimizer, tokenizer, parallelism strategy, or training data. The method targets the pre-training phase directly, where even modest efficiency gains translate into significant cost savings at scale.
The most striking result comes at the 10B-parameter mixture-of-experts scale, where TST consumed 4,768 B200-GPU-hours to reach a lower final training loss than a matched-FLOPs baseline that required 12,311 GPU-hours — a reduction of roughly 61% in total compute. According to the paper on arXiv, the method scales across model sizes from 270M to 10B parameters.
Because TST leaves the underlying architecture untouched, it can slot into existing training pipelines without re-engineering. That portability is a meaningful practical advantage: organizations running standard transformer pre-training workflows can adopt the method without redesigning their infrastructure stack.
The efficiency gains are particularly relevant for teams training mixture-of-experts models, where the sparse activation pattern already reduces per-token compute but pre-training duration remains a dominant cost driver.
OpenAI’s Parameter Golf Contest Surfaces Training Efficiency Techniques
OpenAI’s Parameter Golf challenge, which ran for eight weeks and drew more than 1,000 participants and 2,000 submissions, was structured around a tightly constrained optimization problem: minimize held-out loss on a fixed FineWeb dataset while keeping the total artifact — model weights plus training code — under 16 MB, with a 10-minute training budget on 8×H100s.
The constraints forced participants to treat model compression and training efficiency as first-class design goals rather than afterthoughts. According to OpenAI’s post-competition writeup, the most competitive submissions combined careful optimizer tuning, quantization, new modeling approaches, and test-time training techniques — often in novel combinations.
The competition also documented how AI coding agents changed the pace of the challenge. Agents lowered the cost of rapid experimentation, enabling participants to run more iterations within the time budget and making the contest accessible to a broader range of contributors. OpenAI noted that agent-assisted development created new complications for submission review and attribution.
OpenAI described Parameter Golf as a talent discovery surface, and the results suggest that open-ended, verifiable technical challenges with hard constraints elicit a different class of contribution than standard benchmark leaderboards — one that rewards architectural creativity over raw compute.
Perceptron Mk1 Prices Video Reasoning at 80–90% Below Major Rivals
Two-year-old startup Perceptron Inc. launched Mk1, a proprietary video analysis reasoning model, at $0.15 per million input tokens and $1.50 per million output tokens through its API. According to VentureBeat, that pricing sits 80–90% below comparable offerings from Anthropic’s Claude Sonnet 4.5, OpenAI’s GPT-5, and Google’s Gemini 3.1 Pro.
Co-founder and CEO Armen Aghajanyan, formerly of Meta FAIR and Microsoft, said the company spent 16 months building a “multi-modal recipe” from the ground up rather than adapting an existing language model architecture. The approach was designed to handle physical-world complexity — cause-and-effect relationships, object dynamics, and physics-consistent reasoning — rather than treating video as a sequence of image frames to be captioned.
The model targets enterprise use cases including:
- Security monitoring over physical sites and facilities
- Marketing video editing — identifying high-engagement clips for social repurposing
- Quality control — flagging visual inconsistencies and errors before publication
- Behavioral analysis in research and hiring contexts
Perceptron has published a public demo for evaluation. The pricing strategy positions Mk1 as a cost-reduction play for organizations already running video analysis workloads on frontier model APIs, where per-token costs accumulate quickly given video’s high token density.
What This Means
These four releases share a common thread: efficiency gains achieved through architectural and training-level changes rather than by scaling up compute. RecursiveMAS and Token Superposition Training both deliver 2.4–2.5× improvements in their respective domains — inference speed and pre-training time — without requiring new hardware. Perceptron Mk1 achieves an 80–90% cost reduction through a purpose-built multimodal architecture rather than a fine-tuned general model.
Taken together, they suggest that the current wave of AI efficiency research is moving beyond simple quantization and pruning toward more fundamental rethinks of how models communicate, train, and represent information. The shift from text-based to embedding-based agent communication in RecursiveMAS, for instance, questions an assumption baked into most multi-agent frameworks since their inception.
For enterprises and researchers, the practical implication is that the cost curve for AI deployment is not solely dependent on hardware improvements from chip manufacturers. Software-level architectural changes are delivering comparable efficiency multipliers on existing hardware — a dynamic that compresses the timeline between research publication and production deployment.
OpenAI’s Parameter Golf experiment adds a methodological note: hard constraints and open competition appear to surface efficiency techniques that internal research programs miss. The 2,000-submission dataset of creative approaches to extreme model compression is itself a research artifact.
FAQ
What is RecursiveMAS and how does it differ from standard multi-agent systems?
RecursiveMAS is a framework developed by researchers at UIUC and Stanford that enables AI agents to communicate through embedding vectors rather than generated text. Standard multi-agent systems pass decoded text between agents, which costs tokens and prevents end-to-end training; RecursiveMAS eliminates both problems by keeping inter-agent communication in continuous vector space.
What is Token Superposition Training?
Token Superposition Training (TST) is a pre-training method from Nous Research that reduces LLM training wall-clock time by up to 2.5× without changing the model architecture, optimizer, or data pipeline. At the 10B-parameter mixture-of-experts scale, it required roughly 4,768 B200-GPU-hours versus 12,311 for a matched baseline.
How does Perceptron Mk1’s pricing compare to GPT-5 and Claude Sonnet 4.5?
Perceptron Mk1 is priced at $0.15 per million input tokens and $1.50 per million output tokens — approximately 80–90% less than Anthropic’s Claude Sonnet 4.5, OpenAI’s GPT-5, and Google’s Gemini 3.1 Pro, according to VentureBeat. The company attributes the cost difference to a purpose-built multimodal architecture rather than an adapted general-purpose language model.
Sources
- How RecursiveMAS speeds up multi-agent inference by 2.4x and reduces token usage by 75% – VentureBeat
- What Parameter Golf taught us about AI-assisted research – OpenAI Blog
- Cerebras stock nearly doubles on day one as AI chipmaker hits $100 billion — what it means for AI infrastructure – VentureBeat
- Nous Research Releases Token Superposition Training to Speed Up LLM Pre-Training by Up to 2.5x Across 270M to 10B Parameter Models – Reddit Singularity
- Perceptron Mk1 shocks with highly performant video analysis AI model 80-90% cheaper than Anthropic, OpenAI & Google – VentureBeat






