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 +15 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00001-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00002-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00003-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00004-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00005-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00006-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00007-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00008-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00009-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00010-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00011-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00012-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00013-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00014-of-00015.gguf +3 -0
- UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00015-of-00015.gguf +3 -0
.gitattributes
CHANGED
|
@@ -119,3 +119,18 @@ UD-Q3_K_XL/MiMo-V2.5-Pro-UD-Q3_K_XL-00008-of-00011.gguf filter=lfs diff=lfs merg
|
|
| 119 |
UD-Q3_K_XL/MiMo-V2.5-Pro-UD-Q3_K_XL-00009-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 120 |
UD-Q3_K_XL/MiMo-V2.5-Pro-UD-Q3_K_XL-00010-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 121 |
UD-Q3_K_XL/MiMo-V2.5-Pro-UD-Q3_K_XL-00011-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
UD-Q3_K_XL/MiMo-V2.5-Pro-UD-Q3_K_XL-00009-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 120 |
UD-Q3_K_XL/MiMo-V2.5-Pro-UD-Q3_K_XL-00010-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 121 |
UD-Q3_K_XL/MiMo-V2.5-Pro-UD-Q3_K_XL-00011-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 122 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00001-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 123 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00002-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 124 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00003-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 125 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00004-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 126 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00005-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 127 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00006-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 128 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00007-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 129 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00008-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 130 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00009-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 131 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00010-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 132 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00011-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 133 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00012-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 134 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00013-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 135 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00014-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
| 136 |
+
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00015-of-00015.gguf filter=lfs diff=lfs merge=lfs -text
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00001-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:96477830ff58e3e64878f6e4030f71aa4d31ce92b9936d3bdead606fb0cc4fdd
|
| 3 |
+
size 5954240
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00002-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1300ab816083643151bf5b991a4736dd0bd85b766a74d35714052decbc82d9c7
|
| 3 |
+
size 48137666592
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00003-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dbdc38725ea5e5f29b78dbf577ce35a20ee9368308d083397bbb94283da510b5
|
| 3 |
+
size 48578360032
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00004-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03fbc22c7ecbf557c0ea34023d964a57b4bc695accdc8668189dc849000f2852
|
| 3 |
+
size 47983842176
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00005-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5e8e9e10235b44b3c1081f2b6c6f85079aaf8a81110d0c51c4ce4e08e429efe1
|
| 3 |
+
size 48258506336
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00006-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2a5a97004615b6d0609a8b828572b8720d85e5030d1c9955dd6760d8eac26127
|
| 3 |
+
size 47106159264
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00007-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:59ddd271e613553bb190cc74f1991219373a80369b0372cffc84fd8b04c90ef9
|
| 3 |
+
size 48578360064
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00008-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d3308aeb16a3e296a0c716b7fabcdc39848c75000c9fba9e7965602f4bcf5032
|
| 3 |
+
size 47983842720
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00009-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5daa80e7251cc30af7b1d85769e55d361b5fd79ddb05c9411e0f47a3995b7321
|
| 3 |
+
size 48258505760
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00010-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6bcf3aad899bb3178e6dcba11905c9f5155b69230df659fbee763d17d0c771d
|
| 3 |
+
size 48578360064
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00011-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd3d55120cc5b77ca4d563af5ed0157b471f9ebdfa4c2ac5de251d1ba809dd09
|
| 3 |
+
size 47983842720
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00012-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4b3e9238c1f1b22d39531e34afe62cdb6486d42feda907fde96928e348de163b
|
| 3 |
+
size 48258505760
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00013-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b7d989d7690af5535d38ff88debebd8428986367be4d2039f24d81c525f8b391
|
| 3 |
+
size 48578360064
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00014-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:65825157a66a6b6accc07869dad9f6b4fe2b54a58c7357e215076940e8ca9038
|
| 3 |
+
size 47983842176
|
UD-Q4_K_XL/MiMo-V2.5-Pro-UD-Q4_K_XL-00015-of-00015.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b20d57f2b2c889675ecf803117f37b2b48144b24d8a4af4632fcb7261391d43f
|
| 3 |
+
size 4773818176
|