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 +17 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00001-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00002-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00003-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00004-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00005-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00006-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00007-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00008-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00009-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00010-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00011-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00012-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00013-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00014-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00015-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00016-of-00017.gguf +3 -0
- UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00017-of-00017.gguf +3 -0
.gitattributes
CHANGED
|
@@ -145,3 +145,20 @@ UD-IQ4_XS/MiMo-V2.5-Pro-UD-IQ4_XS-00008-of-00011.gguf filter=lfs diff=lfs merge=
|
|
| 145 |
UD-IQ4_XS/MiMo-V2.5-Pro-UD-IQ4_XS-00009-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 146 |
UD-IQ4_XS/MiMo-V2.5-Pro-UD-IQ4_XS-00010-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 147 |
UD-IQ4_XS/MiMo-V2.5-Pro-UD-IQ4_XS-00011-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 145 |
UD-IQ4_XS/MiMo-V2.5-Pro-UD-IQ4_XS-00009-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 146 |
UD-IQ4_XS/MiMo-V2.5-Pro-UD-IQ4_XS-00010-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 147 |
UD-IQ4_XS/MiMo-V2.5-Pro-UD-IQ4_XS-00011-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 148 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00001-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 149 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00002-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 150 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00003-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 151 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00004-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 152 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00005-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 153 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00006-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 154 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00007-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 155 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00008-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 156 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00009-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 157 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00010-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 158 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00011-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 159 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00012-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 160 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00013-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 161 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00014-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 162 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00015-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 163 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00016-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 164 |
+
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00017-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00001-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dbdd651540eacdaa6ba4d341cf7a8ee92be5967722b4a7cecc7d42fb87ac5026
|
| 3 |
+
size 5954240
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00002-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4dc1ced556bba6a50b7cfeca26bf56e834ba89034f2d1f14df72f9480625e32e
|
| 3 |
+
size 46485124512
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00003-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:318556e90547bd38398039270338e26aeaf5fe467258df443db534b7986acad9
|
| 3 |
+
size 47567546464
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00004-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a62b41ce4228cf0cd88e8ccfc1d8cd7ddb6533829f9a1f9a74dae655438a5631
|
| 3 |
+
size 46935280416
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00005-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:75d1615c69ca1c748b70011bd42da77607a55b52d85735637d7eee08fe9f0f0d
|
| 3 |
+
size 47209943456
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00006-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:225c14328f09061943b5ec16fca0d5be0aa2d77f5f42de75eb040eb987e909e0
|
| 3 |
+
size 48737757888
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00007-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:baf89e32ecf4edf6d26002a0740b92f92baf4a75652d496d8f7fb9c2f63b9ddb
|
| 3 |
+
size 48218736896
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00008-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64a25de77c931510e05194b46c4680eacc22a5e43e7b5ce45d3bb3b2f08a22cf
|
| 3 |
+
size 47209943456
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00009-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d9f4e9cfc6f4fded663ad81a04816c638fcee7483a7ceb21a824d99615444fde
|
| 3 |
+
size 47567547072
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00010-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d1c214c4ae12bc90b92ffada67acb929a79e78b6d5fc12db77aa3ccc3f2b3544
|
| 3 |
+
size 46935279872
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00011-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:97018309a53d125692d4ea90062d583c442b90bedbeef9c14ae48d0fc03c830e
|
| 3 |
+
size 47209944032
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00012-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c2c2ae02cd51ddf092b7405204da50ee8607a6a9d181674bdf67c7a96d1517b2
|
| 3 |
+
size 47567546496
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00013-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:029692be2ed9294567438187bd8128d888ac069323d7381303322a14dc7022f1
|
| 3 |
+
size 46935280416
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00014-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:434672a8090beb464ea7591cf12fb0560b76b885fef6351938cd2c788cae152d
|
| 3 |
+
size 47209943456
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00015-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ed533d1487f75318cb9683c4e447db623e81b65d90a8fe46f0cfc50e14228a9e
|
| 3 |
+
size 47567547072
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00016-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ee5115e56b080bab5e91b5ce3d1817d4bdb0c9c02ea8dea1c4bfe70e70457c4
|
| 3 |
+
size 46935279872
|
UD-Q5_K_XL/MiMo-V2.5-Pro-UD-Q5_K_XL-00017-of-00017.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b25b8ad338788dbc8e0e93ac55a127e8cde0f15cd6f342cc15733ca09edfe6bc
|
| 3 |
+
size 48981726944
|