Instructions to use thad0ctor/MiniMax-M2.5-Q6_K-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 thad0ctor/MiniMax-M2.5-Q6_K-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 thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K # Run inference directly in the terminal: llama cli -hf thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K # Run inference directly in the terminal: llama cli -hf thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K
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 thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K # Run inference directly in the terminal: ./llama-cli -hf thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K
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 thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K # Run inference directly in the terminal: ./build/bin/llama-cli -hf thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K
Use Docker
docker model run hf.co/thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K
- LM Studio
- Jan
- Ollama
How to use thad0ctor/MiniMax-M2.5-Q6_K-GGUF with Ollama:
ollama run hf.co/thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K
- Unsloth Desktop
- Pi
How to use thad0ctor/MiniMax-M2.5-Q6_K-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K
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": "thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use thad0ctor/MiniMax-M2.5-Q6_K-GGUF with Docker Model Runner:
docker model run hf.co/thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K
- Lemonade
How to use thad0ctor/MiniMax-M2.5-Q6_K-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K
Run and chat with the model
lemonade run user.MiniMax-M2.5-Q6_K-GGUF-Q6_K
List all available models
lemonade list
- Hermes Agent
How to use thad0ctor/MiniMax-M2.5-Q6_K-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 thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K
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 thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use thad0ctor/MiniMax-M2.5-Q6_K-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K
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 "thad0ctor/MiniMax-M2.5-Q6_K-GGUF:Q6_K" \ --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"
Add files using upload-large-folder tool
Browse files- .gitattributes +1 -0
- LICENSE +26 -0
- MiniMax-M2.5.Q6_K.gguf +3 -0
- README.md +49 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
MiniMax-M2.5.Q6_K.gguf filter=lfs diff=lfs merge=lfs -text
|
LICENSE
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
MIT License
|
| 2 |
+
|
| 3 |
+
Copyright 2025 MiniMax AI.
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in all
|
| 13 |
+
copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
| 21 |
+
SOFTWARE.
|
| 22 |
+
|
| 23 |
+
Our only modification is that, if the Software (or any derivative works
|
| 24 |
+
thereof) is used for any of your commercial products or services, you shall
|
| 25 |
+
prominently display “MiniMax M2.5” on the user interface of such product or
|
| 26 |
+
service.
|
MiniMax-M2.5.Q6_K.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0011113531d03a7c7f408b3fbebf73568c82610fb345de6ff7cb857b00c5f1a6
|
| 3 |
+
size 187763082496
|
README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
base_model: MiniMaxAI/MiniMax-M2.5
|
| 3 |
+
base_model_relation: quantized
|
| 4 |
+
license: other
|
| 5 |
+
license_name: modified-mit
|
| 6 |
+
license_link: LICENSE
|
| 7 |
+
tags:
|
| 8 |
+
- gguf
|
| 9 |
+
- quantized
|
| 10 |
+
- llama.cpp
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# MiniMax-M2.5 GGUF
|
| 14 |
+
|
| 15 |
+
GGUF quantization of `MiniMaxAI/MiniMax-M2.5`, created with `llama.cpp`.
|
| 16 |
+
|
| 17 |
+
## Model Details
|
| 18 |
+
|
| 19 |
+
| Property | Value |
|
| 20 |
+
| --- | --- |
|
| 21 |
+
| Base model | MiniMaxAI/MiniMax-M2.5 |
|
| 22 |
+
| Architecture | Mixture of Experts (MoE) |
|
| 23 |
+
| Total parameters | 230B |
|
| 24 |
+
| Active parameters | 10B per token |
|
| 25 |
+
| Layers | 62 |
|
| 26 |
+
| Total experts | 256 |
|
| 27 |
+
| Active experts per token | 8 |
|
| 28 |
+
| Source precision | FP8 (`float8_e4m3fn`) |
|
| 29 |
+
|
| 30 |
+
## Available Quantizations
|
| 31 |
+
|
| 32 |
+
| Quantization | Size | Description |
|
| 33 |
+
| --- | --- | --- |
|
| 34 |
+
| Q6_K | 175 GB | 6-bit K-quant, strong quality/size balance |
|
| 35 |
+
|
| 36 |
+
## Usage
|
| 37 |
+
|
| 38 |
+
These GGUFs can be used with `llama.cpp` and compatible frontends.
|
| 39 |
+
|
| 40 |
+
```bash
|
| 41 |
+
# Example with llama-cli
|
| 42 |
+
llama-cli -m MiniMax-M2.5.Q6_K.gguf -p "Hello" -n 128
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
## Notes
|
| 46 |
+
|
| 47 |
+
- The source model uses FP8 (`float8_e4m3fn`) precision.
|
| 48 |
+
- This is a large MoE model and requires significant memory.
|
| 49 |
+
- Quantized from the official `MiniMaxAI/MiniMax-M2.5` weights.
|