This repository contains the GGUF quantized version (
Q4_K_M) of
mistralai/Leanstral-1.5-119B-A6B.
Leanstral 1.5 is an open-source code agent model designed for
Lean 4, a proof assistant capable of expressing complex mathematical objects such as
perfectoid spaces and software specifications like
properties of Rust fragments.
Built as part of the
Mistral Small 4 family, it combines multimodal capabilities and an efficient architecture, making it both performant and cost-effective compared to existing closed-source alternatives.
Because this is a GGUF file, you can run it locally using
llama.cpp or other GGUF-compatible inference frameworks. Due to the 119B parameter scale, ensure your system has enough combined VRAM/RAM to host a ~70-80GB model file.
You can spin up a local server that mimics the OpenAI API layout, making it easy to drop into agent workflows or VS Code extensions:
1./llama-server \
2 -m Leanstral-1.5-119B-A6B-Q4_K_M.gguf \
3 -c 32768 \
4 --port 8080 \
5 --n-gpu-layers 99