What changed
Leanstral 1.5 updates the original Leanstral with a new three-stage training recipe: mid-training โ supervised fine-tuning โ reinforcement learning with CISPO (a variant of online RL from compiler feedback). The result: miniF2F is now fully saturated, PutnamBench jumps to 587/672 (from the prior version's lower number not published by Mistral), and two new real-world measures are introduced โ FATE-H (hard agentic Lean proof completions, 87%) and FATE-X (hardest tier, 34%). In live testing across 57 open-source repositories, the model uncovered 5 previously unknown bugs through automated verification runs.
TL;DR
mistralai/Leanstral-1.5-119B-A6B is a 119B total / 6B active MoE model that saturates miniF2F, solves 587/672 PutnamBench problems, and runs free at $0/token on Mistral's Labs API with a 256k-token context window and Apache-2.0 license.
Developer signal
If you are building automated proof-checking, formal verification pipelines, or Lean 4 tooling, this is the first open model performant enough to use in CI without budget risk. Mistral's own testing found real bugs in real codebases โ not contrived benchmarks. To start: call leanstral-1-5 on the Mistral Labs API (free at the Labs tier), or download weights from mistralai/Leanstral-1.5-119B-A6B on Hugging Face. The model is designed for agentic proof loops: it calls the Lean 4 compiler, observes errors, and revises โ so you need a Lean compiler process in the loop, not just a text generation call. Self-hosting: 6B active parameters means fast inference (mid-range multi-GPU), but the full 119B checkpoint requires significant VRAM or CPU offloading for the inactive expert weights. The Apache-2.0 license removes commercial barriers entirely โ deploy as part of a product without a separate commercial license.