Instructions to use moxin-org/MiniMax-M2-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 moxin-org/MiniMax-M2-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 moxin-org/MiniMax-M2-GGUF:Q4_K_XL # Run inference directly in the terminal: llama cli -hf moxin-org/MiniMax-M2-GGUF:Q4_K_XL
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf moxin-org/MiniMax-M2-GGUF:Q4_K_XL # Run inference directly in the terminal: llama cli -hf moxin-org/MiniMax-M2-GGUF:Q4_K_XL
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 moxin-org/MiniMax-M2-GGUF:Q4_K_XL # Run inference directly in the terminal: ./llama-cli -hf moxin-org/MiniMax-M2-GGUF:Q4_K_XL
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 moxin-org/MiniMax-M2-GGUF:Q4_K_XL # Run inference directly in the terminal: ./build/bin/llama-cli -hf moxin-org/MiniMax-M2-GGUF:Q4_K_XL
Use Docker
docker model run hf.co/moxin-org/MiniMax-M2-GGUF:Q4_K_XL
- LM Studio
- Jan
- vLLM
How to use moxin-org/MiniMax-M2-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "moxin-org/MiniMax-M2-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": "moxin-org/MiniMax-M2-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/moxin-org/MiniMax-M2-GGUF:Q4_K_XL
- Ollama
How to use moxin-org/MiniMax-M2-GGUF with Ollama:
ollama run hf.co/moxin-org/MiniMax-M2-GGUF:Q4_K_XL
- Unsloth Studio
How to use moxin-org/MiniMax-M2-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 moxin-org/MiniMax-M2-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 moxin-org/MiniMax-M2-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for moxin-org/MiniMax-M2-GGUF to start chatting
- Pi
How to use moxin-org/MiniMax-M2-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf moxin-org/MiniMax-M2-GGUF:Q4_K_XL
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": "moxin-org/MiniMax-M2-GGUF:Q4_K_XL" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use moxin-org/MiniMax-M2-GGUF with Docker Model Runner:
docker model run hf.co/moxin-org/MiniMax-M2-GGUF:Q4_K_XL
- Lemonade
How to use moxin-org/MiniMax-M2-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull moxin-org/MiniMax-M2-GGUF:Q4_K_XL
Run and chat with the model
lemonade run user.MiniMax-M2-GGUF-Q4_K_XL
List all available models
lemonade list
- Hermes Agent
How to use moxin-org/MiniMax-M2-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 moxin-org/MiniMax-M2-GGUF:Q4_K_XL
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 moxin-org/MiniMax-M2-GGUF:Q4_K_XL
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use moxin-org/MiniMax-M2-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf moxin-org/MiniMax-M2-GGUF:Q4_K_XL
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 "moxin-org/MiniMax-M2-GGUF:Q4_K_XL" \ --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 +10 -0
- Q8_0/MiniMax-M2-Q8_0-00001-of-00010.gguf +3 -0
- Q8_0/MiniMax-M2-Q8_0-00002-of-00010.gguf +3 -0
- Q8_0/MiniMax-M2-Q8_0-00003-of-00010.gguf +3 -0
- Q8_0/MiniMax-M2-Q8_0-00004-of-00010.gguf +3 -0
- Q8_0/MiniMax-M2-Q8_0-00005-of-00010.gguf +3 -0
- Q8_0/MiniMax-M2-Q8_0-00006-of-00010.gguf +3 -0
- Q8_0/MiniMax-M2-Q8_0-00007-of-00010.gguf +3 -0
- Q8_0/MiniMax-M2-Q8_0-00008-of-00010.gguf +3 -0
- Q8_0/MiniMax-M2-Q8_0-00009-of-00010.gguf +3 -0
- Q8_0/MiniMax-M2-Q8_0-00010-of-00010.gguf +3 -0
.gitattributes
CHANGED
|
@@ -58,3 +58,13 @@ Moxin-Q2_K_XL/MiniMax-M2-Q2_K_XL-00001-of-00004.gguf filter=lfs diff=lfs merge=l
|
|
| 58 |
Moxin-Q2_K_XL/MiniMax-M2-Q2_K_XL-00002-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
Moxin-Q2_K_XL/MiniMax-M2-Q2_K_XL-00003-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
Moxin-Q2_K_XL/MiniMax-M2-Q2_K_XL-00004-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 58 |
Moxin-Q2_K_XL/MiniMax-M2-Q2_K_XL-00002-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
Moxin-Q2_K_XL/MiniMax-M2-Q2_K_XL-00003-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
Moxin-Q2_K_XL/MiniMax-M2-Q2_K_XL-00004-of-00004.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
Q8_0/MiniMax-M2-Q8_0-00001-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
Q8_0/MiniMax-M2-Q8_0-00002-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
Q8_0/MiniMax-M2-Q8_0-00003-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
Q8_0/MiniMax-M2-Q8_0-00004-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
Q8_0/MiniMax-M2-Q8_0-00005-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
Q8_0/MiniMax-M2-Q8_0-00006-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
Q8_0/MiniMax-M2-Q8_0-00007-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 68 |
+
Q8_0/MiniMax-M2-Q8_0-00008-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
Q8_0/MiniMax-M2-Q8_0-00009-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
| 70 |
+
Q8_0/MiniMax-M2-Q8_0-00010-of-00010.gguf filter=lfs diff=lfs merge=lfs -text
|
Q8_0/MiniMax-M2-Q8_0-00001-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f147fe4affd75271623131e2892be4d7ae7fe64ba6ac0bbd5c7d1b44db440971
|
| 3 |
+
size 24763290752
|
Q8_0/MiniMax-M2-Q8_0-00002-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f7cd74b6d18b6657997a36dc746249aea0fd79fad4023c230b8dd51c93ad84e
|
| 3 |
+
size 24685644704
|
Q8_0/MiniMax-M2-Q8_0-00003-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:86a5774d039288643f4579b2d1f76ff9a44c706a3a2ada9cc7faa6f4d168b105
|
| 3 |
+
size 24688802880
|
Q8_0/MiniMax-M2-Q8_0-00004-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3d34e06e30eac4ddbd669c1323b6664b5209a39a3886ea4a9397f4b287348591
|
| 3 |
+
size 24732479904
|
Q8_0/MiniMax-M2-Q8_0-00005-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:785927bf3f1663c7bd48e251bc693aa321de24e0684f780e93c4a8b0e851b4a4
|
| 3 |
+
size 24685644736
|
Q8_0/MiniMax-M2-Q8_0-00006-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6362b72f1eb39a7085e202f1ff85b93aa5226da277af1fb97dc159ac16fa4d25
|
| 3 |
+
size 24688802880
|
Q8_0/MiniMax-M2-Q8_0-00007-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b90b554300034c4c16ffb6175933b551a7554446f8c9ae4b2324f78fd4fb3cb4
|
| 3 |
+
size 24732479904
|
Q8_0/MiniMax-M2-Q8_0-00008-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1cd5d74bf36d9dd0db019d95883951b98b3a187b339d75a4eb977e95be124d10
|
| 3 |
+
size 24685644736
|
Q8_0/MiniMax-M2-Q8_0-00009-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c1a39f31241b9b46d17df5cea4ebb1603d014795ad356ebcca23198f6408b60d
|
| 3 |
+
size 24688802880
|
Q8_0/MiniMax-M2-Q8_0-00010-of-00010.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e6f355e7a39fdfa834b52c2c5a1322479832c7dbe204cce196ff600d18d2a3a3
|
| 3 |
+
size 20785280160
|