3RecursiveIntelligence.io

Looking for Ricursive (the AI chip design company)? You want ricursive.com|Looking for Recursive AI / Recursive Superintelligence (Richard Socher's startup)? You want recursive.com

The AI Abstract — Morning Edition

AI/MLLatest

Making the Future Evenly Distributed.

An AI agent designed chips with zero human intervention and passed every benchmark it was given — 100% completion across four separate hardware design test suites.

A chip design agent just ran unsupervised through four of the field's hardest hardware benchmarks and passed every single one. Not most. All of them. 🔬NVIDIA HORIZON is a framework for writing RTL code, which is the low-level language that describes how transistors and logic gates are wired together inside a chip. Getting RTL right is not like getting Python right. A bug doesn't crash a program. It gets etched into silicon, and the chip simply doesn't work.

What HORIZON does differently is treat chip design like software development under version control. The agent works inside a git repository, so every iteration of the circuit description is tracked and recoverable, the way a software team tracks code changes. When the agent's output fails a test, it doesn't restart from scratch. It patches the specific thing that failed, commits that change, and runs again. Think of it as a repair loop where each failed attempt becomes a labeled note on a map, and the agent follows the map back to fix only the broken intersection rather than re-paving every road. The "executable acceptance gates" are automated tests that verify cycle-accurate correctness, meaning the circuit behaves correctly at the level of individual clock ticks. The agent runs through ChipBench, RTLLM-2.0, Verilog-Eval, and nine CVDP verification categories and exits clean on all of them.

The significance here is not just that the benchmark numbers are high. It's that chip design has historically been one of the domains most resistant to AI automation, because the correctness bar is nearly binary. Circuits either work or they don't. HORIZON's architecture suggests that iterative, verifiable repair with persistent state is the pattern that makes correctness-critical domains tractable for AI agents, which is the same structural lesson showing up in formal mathematics this week.

Mistral's 📰Leanstral 1.5 is a 119-billion-parameter model built specifically to write proofs in Lean 4, a formal language where every logical step is machine-checkable. It solved 587 out of 672 problems on PutnamBench, which is a benchmark built from the William Lowell Putnam Mathematical Competition, considered one of the hardest undergraduate math contests in North America. It beats Claude Opus on this task at roughly one-seventh the cost, and Mistral released the weights under Apache 2.0, meaning anyone can run it. The practical application beyond pure mathematics is code verification: Lean 4 can be used to prove that software does exactly what it claims to do, and Leanstral shows measurable ability to find real bugs in Rust code. Chip correctness proofs and software correctness proofs are structurally the same problem. Both HORIZON and Leanstral are getting traction at the same moment for the same underlying reason: test-time iteration against a formal checker is a more reliable path to correctness than asking a model to get it right in one shot.

The Competence Gate work is smaller in scale but worth understanding in detail. A researcher built a 🔬10MB LoRA adapter for Qwen3.5-4B that decides when the model should call a search tool. The key is what signal it uses to make that decision. Most models that say "I'm not sure" are reading their own output text and flagging uncertainty the same way they'd generate any other sentence. This adapter reads the model's internal activation patterns instead, the actual numerical state inside the network before any words are produced, treating that signal as a more honest measure of whether the model actually knows the answer. The improvement in error detection is 0.46 d', a standardized sensitivity measure borrowed from signal detection theory. More practically: the rate at which the model leaks private queries out to public search dropped from 22% to 10%. The researcher also documented where it fails, specifically on grounded document question-answering, which makes this more credible than a typical release. The technique scales down to hardware anyone can run.

Synthetic Sciences released 📰OpenScience, an Apache 2.0 workbench for scientific research that connects to any model you provide credentials for, runs locally, and ships with 250-plus editable skills and connections to 30-plus scientific databases. It runs against genomics, chemistry, physics, and ML workflows. The open-infrastructure pattern is appearing across multiple stories this cycle — Leanstral's Apache release, OpenScience, the Tunisian Darija corpus — and the clustering suggests this isn't coincidence. There's a sustained push to build scientific AI tooling that isn't owned by the model provider.

On the robotics side, 🔬ASPIRE from NVIDIA takes a similar repair-loop architecture and applies it to physical robot control. The system writes robot control programs in code rather than producing raw motor commands, which means when a task fails, the system can isolate which sub-routine broke and fix that specific piece without retraining everything. It builds a library of working skills over time, so a fix applied once becomes available to future tasks. Zero-shot transfer on long-horizon tasks hit 31% against a prior-method baseline of 4%. That's a large gap, and the mechanism — reusable, verifiable skill primitives rather than monolithic policy retraining — echoes the same iterative-correction logic running through today's hardware and math stories.

📰Meituan's LongCat-2.0 is a 1.6-trillion-parameter model with a native one-million-token context window, trained entirely on domestically manufactured AI chips rather than NVIDIA hardware. The SWE-bench Pro score of 59.5 is competitive with frontier coding systems, and the one-million-token context is real, not an extrapolation from a shorter training window. These claims come from Meituan's own blog and haven't been independently verified, so treat the specific numbers as self-reported for now. The more durable signal is the hardware: a competitive frontier-scale model built without NVIDIA GPUs is a concrete data point about supply-chain diversification, whatever the exact benchmark numbers turn out to be.

Junyang Lin, former technical lead on Qwen, gave a 🎙️talk arguing that reasoning-focused models like o1 and DeepSeek-R1 hit a structural ceiling because internal chain-of-thought reasoning and external tool use require fundamentally different training objectives that don't merge cleanly. His argument is that the next training frontier is agents that revise plans based on real environment feedback rather than models that reason longer before answering. This is commentary from someone with genuine inside knowledge, but it's still one practitioner's read on an unsettled question.

An 18-year-old built an open machine-translation pipeline for Tunisian Darija, a spoken dialect of Arabic written in a mix of Arabic script and Latin characters, called Arabizi. The model is small, the BLEU score of 3.89 is a true baseline rather than a competitive result, and the researcher says so plainly. What it is: a working tokenizer, a trained model, and 553 hand-curated sentence pairs, all public, for a language that has essentially no existing NLP infrastructure. That's a starting point that didn't exist before.


🔬 HORIZON paper (arXiv 2606.28279): Read for the git-backed iteration architecture and how executable acceptance gates make correctness-critical automation tractable.

📰 Leanstral 1.5 release: Read for the test-time scaling methodology and the practical Rust bug-detection results, not just the Putnam numbers.

🔬 Competence Gate (Reddit/HuggingFace): Read for the internal-versus-verbalized confidence distinction and the honest failure-mode documentation.

🔬 ASPIRE paper (arXiv 2607.00272): Read for the reusable skill library mechanism and what the 4%-to-31% zero-shot gap tells you about where robotics scaling is actually bottlenecked.

📰 OpenScience workbench: Read if you work in scientific computing and want a model-agnostic alternative to vendor-hosted research tools.

Links

  1. NVIDIA HORIZON: A Hands-Free Agent that Evolves Git Worktrees and Hits 100% RTL Benchmark Completion

    marktechpost.com

    NVIDIA Research released HORIZON, an agentic framework for hands-free hardware design that evolves RTL code via repository-level iteration with executable acceptance gates, achieving 100% pass rates across ChipBench, RTLLM-2.0, Verilog-Eval, and nine CVDP verification categories. This work extends self-evolving systems (AlphaEvolve, SATLUTION) into hardware design, demonstrating that cycle-accurate correctness can be achieved through persistent model sessions, git-backed state management, and multi-iteration repair loops—a significant capability shift for AI-assisted chip design.

  2. Mistral AI Releases Leanstral 1.5: An Apache-2.0 Lean 4 Code Agent Model Solving 587 of 672 PutnamBench Problems

    marktechpost.com

    Mistral AI released Leanstral 1.5, a 119B-parameter mixture-of-experts model specialized for Lean 4 theorem proving and code verification, achieving state-of-the-art results on multiple benchmarks (587/672 on PutnamBench, 87% on FATE-H, beating Claude Opus at 1/7 cost) with open Apache 2.0 weights. The model demonstrates practical capability in formal verification and bug detection in real Rust code, with test-time scaling as a core capability, positioning it as a significant advance in mechanized mathematics and code correctness tooling for practitioners.

  3. NVIDIA AI Introduces ASPIRE: A Self-Improving Robotics Framework Reaching 31% Zero-Shot on LIBERO-Pro Long Tasks

    marktechpost.com

    NVIDIA and collaborators introduce ASPIRE, a continual learning system that writes and refines robot control programs through closed-loop execution traces and reusable skill libraries. The framework achieves 31% zero-shot transfer on held-out long-horizon tasks (vs. 4% prior methods) and substantial gains on contact-rich manipulation, addressing a core scaling bottleneck in robotic programming by localizing failures to specific primitives and distilling fixes into transferable knowledge.

  4. Synthetic Sciences Releases OpenScience: An Open-Source, Model-Agnostic AI Workbench for Machine Learning, Biology, Physics, and Chemistry Research

    marktechpost.com

    Synthetic Sciences released OpenScience, an Apache-2.0 open-source AI workbench for scientific research (ML, biology, physics, chemistry) that supports any model provider via bring-your-own-key, runs locally, and includes 250+ editable skills and 30+ scientific databases. This directly counters vendor lock-in in scientific AI tooling and democratizes access to agentic research workflows, making it highly relevant to practitioners and researchers building on open infrastructure.

  5. Competence Gate: gating tool-use on a small model's internal confidence signal instead of its verbalised one — Qwen3.5-4B, open weights [P]

    reddit.com

    Researcher released a 10MB LoRA adapter for Qwen3.5-4B that gates tool use on internal confidence signals rather than verbalised confidence, achieving 0.46 d′ improvement in error detection and reducing private-query leakage to public search from 22% to 10%. Open-weights release with honest post-hoc validation showing both validated claims (parametric competence routing) and failure modes (grounded document QA) is rare practitioner-relevant signal on uncertainty quantification in small models—democratizes a technique beyond scale.

  6. Anthropic Launches Claude Science Beta: A Multi-Agent AI Workbench for Reproducible Genomics, Proteomics, and Cheminformatics Pipelines

    marktechpost.com

    Anthropic released Claude Science, a multi-agent AI workbench integrating 60+ domain-specific skills for genomics, proteomics, and cheminformatics with built-in reproducibility tracking and HPC compute scaling. This matters because it signals a shift from general-purpose LLM assistants toward domain-specialized agent orchestration with verifiable scientific provenance—a capability gap practitioners in life sciences have faced.

  7. I built an open, from-scratch MT pipeline + parallel corpus for Tunisian Darija (Arabizi) early baseline, and I'm growing it into a curated community corpus [P]

    reddit.com

    An 18-year-old built an open machine-translation pipeline and parallel corpus for Tunisian Darija (Arabizi), addressing a gap in low-resource dialectal Arabic NLP with an Arabizi-aware tokenizer, 15.6M-param Transformer, and 553 hand-curated parallel pairs. The work democratizes dialect-specific MT infrastructure and provides a documented baseline (BLEU 3.89) for community contribution, signaling expanding accessibility of NLP tooling to underserved languages.

  8. Meituan Releases LongCat-2.0: A 1.6T-Parameter Open MoE Model with Native 1M Context and LongCat Sparse Attention

    marktechpost.com

    Meituan released LongCat-2.0, a 1.6T-parameter open MoE model with native 1M-token context window, trained entirely on domestic AI ASICs. The model targets agentic coding workflows with reported SWE-bench Pro scores (59.5) competitive with frontier systems, introducing sparse attention and dynamic expert routing to make trillion-parameter inference tractable on non-Nvidia hardware—a significant signal for AI supply-chain diversification and open-source long-context scaling.

  9. Qwen’s Former Lead on What Hybrid Thinking Got Wrong — and Why He Now Backs Agents

    marktechpost.com

    Junyang Lin, former Qwen technical lead, reframes the field's transition from reasoning-centric models (o1, DeepSeek-R1) to agentic thinking—models that act in environments with tool use, plan revision, and closed-loop feedback. The piece articulates why hybrid thinking models are architecturally hard to merge and positions agents as the next training frontier, offering practitioners a conceptual map for post-reasoning-era model development.

  10. Structured PDF-to-JSON: A Guide to Open-Source Extraction Models in 2026

    marktechpost.com

    Comprehensive guide categorizing PDF-to-JSON extraction into schema-driven and document-parsing approaches, with detailed evaluation of open-source models (lift, NuExtract3, Docling, etc.) including benchmarks and deployment paths. Directly useful for practitioners choosing local extraction tools and leveraging open weights for cost/privacy benefits in enterprise document processing pipelines.