Instructions to use unsloth/MiMo-V2.5-Pro-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use unsloth/MiMo-V2.5-Pro-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M # Run inference directly in the terminal: llama cli -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M # Run inference directly in the terminal: llama cli -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
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 unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
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 unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
Use Docker
docker model run hf.co/unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
- LM Studio
- Jan
- vLLM
How to use unsloth/MiMo-V2.5-Pro-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "unsloth/MiMo-V2.5-Pro-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": "unsloth/MiMo-V2.5-Pro-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
- Ollama
How to use unsloth/MiMo-V2.5-Pro-GGUF with Ollama:
ollama run hf.co/unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
- Unsloth Desktop
- Pi
How to use unsloth/MiMo-V2.5-Pro-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use unsloth/MiMo-V2.5-Pro-GGUF with Docker Model Runner:
docker model run hf.co/unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
- Lemonade
How to use unsloth/MiMo-V2.5-Pro-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
Run and chat with the model
lemonade run user.MiMo-V2.5-Pro-GGUF-UD-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use unsloth/MiMo-V2.5-Pro-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
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 unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use unsloth/MiMo-V2.5-Pro-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "unsloth/MiMo-V2.5-Pro-GGUF:UD-Q4_K_M" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Upload folder using huggingface_hub
Browse files- .gitattributes +8 -0
- UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00001-of-00008.gguf +3 -0
- UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00002-of-00008.gguf +3 -0
- UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00003-of-00008.gguf +3 -0
- UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00004-of-00008.gguf +3 -0
- UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00005-of-00008.gguf +3 -0
- UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00006-of-00008.gguf +3 -0
- UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00007-of-00008.gguf +3 -0
- UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00008-of-00008.gguf +3 -0
.gitattributes
CHANGED
|
@@ -196,3 +196,11 @@ UD-Q5_K_S/MiMo-V2.5-Pro-UD-Q5_K_S-00013-of-00016.gguf filter=lfs diff=lfs merge=
|
|
| 196 |
UD-Q5_K_S/MiMo-V2.5-Pro-UD-Q5_K_S-00014-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 197 |
UD-Q5_K_S/MiMo-V2.5-Pro-UD-Q5_K_S-00015-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 198 |
UD-Q5_K_S/MiMo-V2.5-Pro-UD-Q5_K_S-00016-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 196 |
UD-Q5_K_S/MiMo-V2.5-Pro-UD-Q5_K_S-00014-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 197 |
UD-Q5_K_S/MiMo-V2.5-Pro-UD-Q5_K_S-00015-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 198 |
UD-Q5_K_S/MiMo-V2.5-Pro-UD-Q5_K_S-00016-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 199 |
+
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00001-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 200 |
+
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00002-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 201 |
+
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00003-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 202 |
+
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00004-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 203 |
+
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00005-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 204 |
+
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00006-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 205 |
+
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00007-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 206 |
+
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00008-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00001-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:90a5bb75722f22e01a72031bae5bb5305440fc8dc2edc73649b7e608d1d53b7e
|
| 3 |
+
size 5954240
|
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00002-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3beac9a13b3fa02922d6077e4a02a81ee467a43cde33ece78c36d525709a1ce
|
| 3 |
+
size 48954438240
|
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00003-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eaa7090bb720143143f9b734dbfb291eed1b588e5e004c92178ec946bb6d8844
|
| 3 |
+
size 48064467264
|
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00004-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:808e1e64a8619ccbbe09804f44acae418cbbd6e58775cf9f89a5b579d47ac0c1
|
| 3 |
+
size 49770284512
|
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00005-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8ed6d25a1d602250f0754d01eb68cbdd726f8bc2c71359700c02f019a2d4497e
|
| 3 |
+
size 49878643104
|
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00006-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7dad895d97ad7a10ddcc718e65fa0d3b225e258acfa17346f9498e505f624a9
|
| 3 |
+
size 49878643104
|
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00007-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d383959c704a2f88780f4849f58897079a616ea25edf680bf2a7e63d09423f3e
|
| 3 |
+
size 49878642528
|
UD-IQ2_M/MiMo-V2.5-Pro-UD-IQ2_M-00008-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d872c950c4f0aa11a0dd6aa291554eaf2f765f04b2c725cfa1eb479d3c0f866d
|
| 3 |
+
size 20838864608
|