Instructions to use SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF", filename="Ministral-3-8B-Reasoning-2512-BF16-mmproj.gguf", )
llm.create_chat_completion( messages = [ { "role": "user", "content": "What is the capital of France?" } ] ) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF with llama.cpp:
Install from brew
brew install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16 # Run inference directly in the terminal: llama-cli -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama-server -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16 # Run inference directly in the terminal: llama-cli -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16 # Run inference directly in the terminal: ./llama-cli -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16
Use Docker
docker model run hf.co/SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16
- LM Studio
- Jan
- vLLM
How to use SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16
- Ollama
How to use SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF with Ollama:
ollama run hf.co/SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16
- Unsloth Studio
How to use SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF to start chatting
- Pi
How to use SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama-server -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16
Run Hermes
hermes
- Docker Model Runner
How to use SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF with Docker Model Runner:
docker model run hf.co/SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16
- Lemonade
How to use SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:BF16
Run and chat with the model
lemonade run user.Ministral-3-8B-Reasoning-2512-GGUF-BF16
List all available models
lemonade list
Install from WinGet (Windows)
winget install llama.cpp
# Start a local OpenAI-compatible server with a web UI:
llama-server -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:# Run inference directly in the terminal:
llama-cli -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:Use pre-built binary
# Download pre-built binary from:
# https://github.com/ggerganov/llama.cpp/releases# Start a local OpenAI-compatible server with a web UI:
./llama-server -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:# Run inference directly in the terminal:
./llama-cli -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:Build from source code
git clone https://github.com/ggerganov/llama.cpp.git
cd llama.cpp
cmake -B build
cmake --build build -j --target llama-server llama-cli# Start a local OpenAI-compatible server with a web UI:
./build/bin/llama-server -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:# Run inference directly in the terminal:
./build/bin/llama-cli -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:Use Docker
docker model run hf.co/SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:Ministral-3-8B-Reasoning-2512
Ministral-3-8B-Reasoning-2512 is an efficient multimodal reasoning-focused language model developed by Mistral AI, optimized for structured reasoning, coding workflows, conversational AI, and vision-language tasks. This repository contains GGUF quantized variants of the model optimized for efficient local inference using llama.cpp.
The model combines a compact language model with a vision encoder, enabling both text and image understanding capabilities while remaining practical for edge and consumer-grade deployments. The quantized formats significantly reduce memory requirements while preserving strong reasoning and instruction-following performance.
Model Overview
- Model Name: Ministral-3-8B-Reasoning-2512
- Base Model: mistralai/Ministral-3-8B-Reasoning-2512
- Architecture: Decoder-only Transformer with Vision Encoder
- Parameter Count: ~8.4B Language Model + ~0.4B Vision Encoder
- Context Window: 256K tokens
- Modalities: Text, Image (multimodal support)
- Primary Languages: Multilingual
- Developer: Mistral AI
- License: Apache 2.0
Quantization Formats
This repository provides various GGUF quantized versions of the Ministral-3-8B-Reasoning-2512 model, optimized for efficient local inference using llama.cpp. Below are the details of the available I-Matrix (IQ) formats.
IQ3_M
- Size reduction of approx 76.49% (3.72 GB) compared to 16-bit (15.82 GB)
- Aggressive 3-bit quantization optimized for maximum memory efficiency
- Suitable for CPU-only inference and lightweight deployment environments
- Enables practical deployment on low-memory consumer hardware and edge systems
- Output quality may reduce on highly complex reasoning, coding, and multimodal analytical tasks
IQ4_NL
- Size reduction of approx 70.73% (4.63 GB) compared to 16-bit (15.82 GB)
- Advanced 4-bit non-linear quantization designed to better preserve reasoning quality and structured outputs
- More suitable for coding workflows, analytical reasoning, and multimodal understanding tasks
- Typically provides stronger consistency compared to lower-bit formats
- Slightly increased computational overhead during inference
IQ4_XS
- Size reduction of approx 72.12% (4.41 GB) compared to 16-bit (15.82 GB)
- Balanced 4-bit quantization focused on efficient inference and stable reasoning performance
- Good trade-off between model size, response quality, and inference speed
- Suitable for conversational AI, reasoning workflows, and structured generation tasks
- Maintains reliable performance across most practical instruction-following and multimodal workloads
Training Background (Original Model)
Ministral-3-8B-Reasoning-2512 is trained with an emphasis on efficient reasoning performance, multimodal understanding, structured response generation, and reliable instruction following across a variety of downstream tasks.
Pretraining
- Large-scale language and multimodal pretraining across diverse datasets
- Focus on contextual understanding, image understanding, and efficient reasoning capability
- Optimized for downstream conversational, analytical, and multimodal workloads
Instruction Tuning
- Refined using instruction-following and reasoning-oriented datasets
- Enhanced for structured responses and multi-step reasoning tasks
- Improved consistency for coding, analytical, conversational, and vision-language workflows
Key Capabilities
Multimodal Understanding Supports image and text understanding for vision-language reasoning workflows.
Reasoning and Analysis Performs effectively on structured reasoning and multi-step analytical tasks.
Instruction Following Produces context-aware and structured responses across diverse prompts.
Coding Assistance Supports code explanation, generation, and technical reasoning workflows.
Efficient Edge Deployment Compact architecture enables practical local inference across constrained hardware environments.
Large Context Processing Supports extended-context reasoning and long conversational interactions through a 256K context window.
Usage Example
Using llama.cpp
./llama-cli \
-m SandlogicTechnologies/Ministral-3-8B-Reasoning-2512_IQ4_NL.gguf \
-p "Analyze the attached image and explain the mathematical diagram step-by-step."
Recommended Usecases
Multimodal AI Assistants Build lightweight local assistants capable of handling text and image inputs.
Reasoning and Analytical Tasks Generate structured outputs for logical and multi-step problem-solving workflows.
Coding and Technical Assistance Support code explanation, debugging, and development-oriented workflows.
Vision-Language Applications Perform image understanding and multimodal reasoning tasks.
Research and Experimentation Evaluate prompting strategies, multimodal workflows, and local inference pipelines.
Acknowledgments
These quantized models are based on the original work by the Mistral AI development team.
Special thanks to:
The Mistral AI team for developing and releasing the Ministral-3-8B-Reasoning-2512 model.
Georgi Gerganov and the
llama.cppopen-source community for enabling efficient quantization and inference via the GGUF format.
Contact
For questions, feedback, or support, please reach out at support@sandlogic.com or visit https://www.sandlogic.com/
- Downloads last month
- 641
3-bit
4-bit
Model tree for SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF
Base model
mistralai/Ministral-3-8B-Base-2512
Install from brew
# Start a local OpenAI-compatible server with a web UI: llama-server -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF:# Run inference directly in the terminal: llama-cli -hf SandLogicTechnologies/Ministral-3-8B-Reasoning-2512-GGUF: