Views
No views yet
| File | Quant | Size | Description |
|---|---|---|---|
mistralai_Leanstral-128x3.9B-2603-Q4_K_M.gguf | Q4_K_M | 68 GB | Best balance of quality and size. Runs on 2x RTX 4090 + RAM offload |
mistralai_Leanstral-128x3.9B-2603-Q8_0.gguf | Q8_0 | 118 GB | Near-lossless. Good base for custom requantization |
deepseek2 (Mistral 4 uses the same architecture as DeepSeek V3)1./llama-server \
2 -m mistralai_Leanstral-128x3.9B-2603-Q4_K_M.gguf \
3 -fit on -fa on \
4 --host 0.0.0.0 \
5 --ctx-size 128000 \
6 --jinja \
7 --chat-template-file chat_template.jinjaNote: You need a chat template that supports[THINK]blocks for reasoning. Download the template from the original model repo.
reasoning_effort via the chat template:"high" - Enables thinking (recommended for Lean 4 proofs and complex tasks)"none" - Direct answers without reasoningreasoning_effort in your API request body, or modify the chat template default.-fit on--allow-requantize)convert_hf_to_gguf.py with --mistral-format flag (llama.cpp)mistral-common >= 1.10.0 for conversion)