Image-Text-to-Text
Transformers
GGUF
multimodal
Mixture of Experts
agent
coding
video
minimax_m3_vl
conversational
Instructions to use unsloth/MiniMax-M3-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use unsloth/MiniMax-M3-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="unsloth/MiniMax-M3-GGUF") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("unsloth/MiniMax-M3-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use unsloth/MiniMax-M3-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/MiniMax-M3-GGUF:UD-Q4_K_M # Run inference directly in the terminal: llama cli -hf unsloth/MiniMax-M3-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/MiniMax-M3-GGUF:UD-Q4_K_M # Run inference directly in the terminal: llama cli -hf unsloth/MiniMax-M3-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/MiniMax-M3-GGUF:UD-Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf unsloth/MiniMax-M3-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/MiniMax-M3-GGUF:UD-Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf unsloth/MiniMax-M3-GGUF:UD-Q4_K_M
Use Docker
docker model run hf.co/unsloth/MiniMax-M3-GGUF:UD-Q4_K_M
- LM Studio
- Jan
- vLLM
How to use unsloth/MiniMax-M3-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "unsloth/MiniMax-M3-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/MiniMax-M3-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/unsloth/MiniMax-M3-GGUF:UD-Q4_K_M
- SGLang
How to use unsloth/MiniMax-M3-GGUF with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "unsloth/MiniMax-M3-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "unsloth/MiniMax-M3-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "unsloth/MiniMax-M3-GGUF" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "unsloth/MiniMax-M3-GGUF", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Ollama
How to use unsloth/MiniMax-M3-GGUF with Ollama:
ollama run hf.co/unsloth/MiniMax-M3-GGUF:UD-Q4_K_M
- Unsloth Desktop
- Pi
How to use unsloth/MiniMax-M3-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/MiniMax-M3-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/MiniMax-M3-GGUF:UD-Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use unsloth/MiniMax-M3-GGUF with Docker Model Runner:
docker model run hf.co/unsloth/MiniMax-M3-GGUF:UD-Q4_K_M
- Lemonade
How to use unsloth/MiniMax-M3-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull unsloth/MiniMax-M3-GGUF:UD-Q4_K_M
Run and chat with the model
lemonade run user.MiniMax-M3-GGUF-UD-Q4_K_M
List all available models
lemonade list
- Hermes Agent
How to use unsloth/MiniMax-M3-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/MiniMax-M3-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/MiniMax-M3-GGUF:UD-Q4_K_M
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use unsloth/MiniMax-M3-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/MiniMax-M3-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/MiniMax-M3-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 +11 -11
- Q8_0/MiniMax-M3-Q8_0-00001-of-00011.gguf +3 -0
- Q8_0/MiniMax-M3-Q8_0-00002-of-00011.gguf +3 -0
- Q8_0/MiniMax-M3-Q8_0-00003-of-00011.gguf +3 -0
- Q8_0/MiniMax-M3-Q8_0-00004-of-00011.gguf +3 -0
- Q8_0/MiniMax-M3-Q8_0-00005-of-00011.gguf +3 -0
- Q8_0/MiniMax-M3-Q8_0-00006-of-00011.gguf +3 -0
- Q8_0/MiniMax-M3-Q8_0-00007-of-00011.gguf +3 -0
- Q8_0/MiniMax-M3-Q8_0-00008-of-00011.gguf +3 -0
- Q8_0/MiniMax-M3-Q8_0-00009-of-00011.gguf +3 -0
- Q8_0/MiniMax-M3-Q8_0-00010-of-00011.gguf +3 -0
- Q8_0/MiniMax-M3-Q8_0-00011-of-00011.gguf +3 -0
.gitattributes
CHANGED
|
@@ -126,14 +126,14 @@ MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00004-of-00007.gguf filter=lfs diff=lfs merge=lfs
|
|
| 126 |
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00005-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 127 |
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00006-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 128 |
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00007-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
|
|
|
| 126 |
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00005-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 127 |
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00006-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 128 |
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00007-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 129 |
+
Q8_0/MiniMax-M3-Q8_0-00001-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 130 |
+
Q8_0/MiniMax-M3-Q8_0-00002-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 131 |
+
Q8_0/MiniMax-M3-Q8_0-00003-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 132 |
+
Q8_0/MiniMax-M3-Q8_0-00004-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 133 |
+
Q8_0/MiniMax-M3-Q8_0-00005-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 134 |
+
Q8_0/MiniMax-M3-Q8_0-00006-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 135 |
+
Q8_0/MiniMax-M3-Q8_0-00007-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 136 |
+
Q8_0/MiniMax-M3-Q8_0-00008-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 137 |
+
Q8_0/MiniMax-M3-Q8_0-00009-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 138 |
+
Q8_0/MiniMax-M3-Q8_0-00010-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
| 139 |
+
Q8_0/MiniMax-M3-Q8_0-00011-of-00011.gguf filter=lfs diff=lfs merge=lfs -text
|
Q8_0/MiniMax-M3-Q8_0-00001-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9d44207527d6626ae6141c42c0638e2ba31e216c3882cf87c05b0d142c745891
|
| 3 |
+
size 8243104
|
Q8_0/MiniMax-M3-Q8_0-00002-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:36eb93d3edeafdd3375c83a291ff8fee50dd0bd099f13d6b062db8643415b206
|
| 3 |
+
size 48354553728
|
Q8_0/MiniMax-M3-Q8_0-00003-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e0e512e3bae8cd3cd53dbfec1f86b9062dc717f5958e46ab6d2256e84214362c
|
| 3 |
+
size 49967080576
|
Q8_0/MiniMax-M3-Q8_0-00004-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e3db6a55d77d4a610d0f42ec92d0deba376a50a4dc7ff14861e1af9a66f96a81
|
| 3 |
+
size 49853414592
|
Q8_0/MiniMax-M3-Q8_0-00005-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bf5a305318dd44d486ad66efb7880786cb29d041f859d71b0d64987fd8e53ed9
|
| 3 |
+
size 49856585024
|
Q8_0/MiniMax-M3-Q8_0-00006-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9a426c24348ecbabed0da6b40d668119c35b23f65ba402affe11f75e8808f2e6
|
| 3 |
+
size 49967080608
|
Q8_0/MiniMax-M3-Q8_0-00007-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:905d41c8f7a7c7ae1bbf68374812f57d0c67a9f1692f780b2c111bdaa20f1353
|
| 3 |
+
size 49853414592
|
Q8_0/MiniMax-M3-Q8_0-00008-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1fb4510195fd985abbeb8fab9fc30a391bc46d7891505b0e1df3e63ff4a99a77
|
| 3 |
+
size 49856585024
|
Q8_0/MiniMax-M3-Q8_0-00009-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0140e6f9a30c8f3b3db02d8eeeec29df15e11e54969b8cf124103baebde21881
|
| 3 |
+
size 49967080608
|
Q8_0/MiniMax-M3-Q8_0-00010-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b086d72a70fc9712c0996a688dee929227575c8dace0453274ab5926a2cc151d
|
| 3 |
+
size 49853414592
|
Q8_0/MiniMax-M3-Q8_0-00011-of-00011.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0f7cc8a2e95c96f5b4658a80830fb63ce532f1e65e7917237d0e4a30279eca6
|
| 3 |
+
size 5177106944
|