Instructions to use bartowski/MiMo-V2.5-Pro-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use bartowski/MiMo-V2.5-Pro-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="bartowski/MiMo-V2.5-Pro-GGUF", filename="MiMo-V2.5-Pro-IQ1_M/MiMo-V2.5-Pro-IQ1_M-00001-of-00006.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 bartowski/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 bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf bartowski/MiMo-V2.5-Pro-GGUF: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 bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf bartowski/MiMo-V2.5-Pro-GGUF: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 bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
Use Docker
docker model run hf.co/bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use bartowski/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 "bartowski/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": "bartowski/MiMo-V2.5-Pro-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
- Ollama
How to use bartowski/MiMo-V2.5-Pro-GGUF with Ollama:
ollama run hf.co/bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
- Unsloth Studio
How to use bartowski/MiMo-V2.5-Pro-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 bartowski/MiMo-V2.5-Pro-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 bartowski/MiMo-V2.5-Pro-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for bartowski/MiMo-V2.5-Pro-GGUF to start chatting
- Pi
How to use bartowski/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 bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
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": "bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use bartowski/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 bartowski/MiMo-V2.5-Pro-GGUF: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 bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- OpenClaw new
How to use bartowski/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 bartowski/MiMo-V2.5-Pro-GGUF: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 "bartowski/MiMo-V2.5-Pro-GGUF: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"
- Docker Model Runner
How to use bartowski/MiMo-V2.5-Pro-GGUF with Docker Model Runner:
docker model run hf.co/bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
- Lemonade
How to use bartowski/MiMo-V2.5-Pro-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull bartowski/MiMo-V2.5-Pro-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.MiMo-V2.5-Pro-GGUF-Q4_K_M
List all available models
lemonade list
Upload folder using huggingface_hub
Browse files- .gitattributes +16 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00001-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00002-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00003-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00004-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00005-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00006-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00007-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00008-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00009-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00010-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00011-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00012-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00013-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00014-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00015-of-00016.gguf +3 -0
- MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00016-of-00016.gguf +3 -0
.gitattributes
CHANGED
|
@@ -50,3 +50,19 @@ MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00014-of-00017.gguf filter=lfs diff=lf
|
|
| 50 |
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00015-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00016-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00017-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 50 |
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00015-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 51 |
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00016-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 52 |
MiMo-V2.5-Pro-Q4_K_M/MiMo-V2.5-Pro-Q4_K_M-00017-of-00017.gguf filter=lfs diff=lfs merge=lfs -text
|
| 53 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00001-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 54 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00002-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 55 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00003-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 56 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00004-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00005-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00006-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00007-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00008-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00009-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00010-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00011-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00012-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00013-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00014-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00015-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00016-of-00016.gguf filter=lfs diff=lfs merge=lfs -text
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00001-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:01513d39280115f4a914591d06daf2afae5ef8c85acdc099e17557dbb6b6c166
|
| 3 |
+
size 37581049408
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00002-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fa9a2084749b7a7c04aa8f1d749ecf634b18df70673238a21e193f535c86a456
|
| 3 |
+
size 38471673952
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00003-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8e8ac2314dd635fc7e3e771cf2ebbfec11afaa69df4043c9bdde2ddabe841b27
|
| 3 |
+
size 39558378656
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00004-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:eedf623aa2d7e383830c8361fdd0f2c82ca4a880eabb7d714db6ebf641c119a4
|
| 3 |
+
size 39991085376
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00005-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:954832f2be9690c4b4d0761c36ef1e44e6afbeccc36f58b0890f12b3e6c340bb
|
| 3 |
+
size 36831007136
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00006-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:405a85ecb30ffe8ac7656bb9d96230c86a054f4b30f38d4176be1281be0b94db
|
| 3 |
+
size 39991085952
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00007-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ad65fbc9cefb741e000641e8028d9be14c05af59ce715f325adbdd4ac550533
|
| 3 |
+
size 36831007136
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00008-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f36a75f7bce60b884dd4a22c196fdb197afa5a7553ae76e4ee3218a43a7ad88
|
| 3 |
+
size 39991085952
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00009-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a6da855c28d9bb0793c133f1cb962ccb51647e14d9a20f7c300c799c3635b24e
|
| 3 |
+
size 36831007136
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00010-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1835556d1b7b7e8bcd65c8498f5aaf513d21632e8480f404d10297f6fc34999
|
| 3 |
+
size 39991085952
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00011-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:440ca35a9f6d792489fc86800ac4dba3a01d05a8838ee45e17f7d6fff1bc06ca
|
| 3 |
+
size 36831007136
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00012-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ac47bf7d1f41779200383206a9768ea190da23d07c6b880e79a2fb2d2cc59212
|
| 3 |
+
size 39991085952
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00013-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:15b1e7af49bb612125eb061a52b767de1205a17b98a39468707785601759e161
|
| 3 |
+
size 36831007136
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00014-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a796d9e87d510c5f4cff42baab2a32cd3c1a207005bb5bf440bd7627e8b7648e
|
| 3 |
+
size 38471673984
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00015-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:927b31bece8aa08c8fc692c49cf31f42f96a3f39244c9d708ec641e2c38ff55b
|
| 3 |
+
size 38481136416
|
MiMo-V2.5-Pro-Q4_K_S/MiMo-V2.5-Pro-Q4_K_S-00016-of-00016.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cdebf3f381d95b31fc0cbab4bf711731c2b3fe8c931673a6125065c1bd15567c
|
| 3 |
+
size 21745910272
|