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 +8 -0
- UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00001-of-00008.gguf +3 -0
- UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00002-of-00008.gguf +3 -0
- UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00003-of-00008.gguf +3 -0
- UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00004-of-00008.gguf +3 -0
- UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00005-of-00008.gguf +3 -0
- UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00006-of-00008.gguf +3 -0
- UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00007-of-00008.gguf +3 -0
- UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00008-of-00008.gguf +3 -0
.gitattributes
CHANGED
|
@@ -57,3 +57,11 @@ UD-Q3_K_XL/MiniMax-M3-UD-Q3_K_XL-00002-of-00005.gguf filter=lfs diff=lfs merge=l
|
|
| 57 |
UD-Q3_K_XL/MiniMax-M3-UD-Q3_K_XL-00003-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
UD-Q3_K_XL/MiniMax-M3-UD-Q3_K_XL-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
UD-Q3_K_XL/MiniMax-M3-UD-Q3_K_XL-00005-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
UD-Q3_K_XL/MiniMax-M3-UD-Q3_K_XL-00003-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 58 |
UD-Q3_K_XL/MiniMax-M3-UD-Q3_K_XL-00004-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 59 |
UD-Q3_K_XL/MiniMax-M3-UD-Q3_K_XL-00005-of-00005.gguf filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00001-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00002-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00003-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00004-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00005-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00006-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 66 |
+
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00007-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 67 |
+
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00008-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00001-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7e3aec5ca6f338edfea55b58d1941c241f9754ca6f7cd7a808ea4c7675e6fc39
|
| 3 |
+
size 8243104
|
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00002-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c3cd9127148f458d1c640cde22479f25a2ecdb2017d8d98aa0f80a88fca26832
|
| 3 |
+
size 49636174912
|
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00003-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:459ea35b8f0e9b4b6ba3443df6be40cc86ba0b553d6c7bc2c63d6df0f69aee72
|
| 3 |
+
size 49326266912
|
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00004-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a892039e656a6d08941107b0f75008ad2919d5667fabe49426611b309de6f921
|
| 3 |
+
size 49326266912
|
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00005-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:76561cecbde7c5b0123961efc7eb299e73ad2287b85bfad191c4c26a2e5bc2f5
|
| 3 |
+
size 49326266912
|
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00006-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:090d55d3b6df2fe924017e37a92e2c05809ac3e36d077b584081b734810906a4
|
| 3 |
+
size 49326266912
|
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00007-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:02c601bfc7142433943c0b9a90e5f7310b640bf905a9a1a4a71ae63c40f0da31
|
| 3 |
+
size 49911372320
|
UD-Q5_K_XL/MiniMax-M3-UD-Q5_K_XL-00008-of-00008.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d567295c6aa3220788cd836df869855ecaab6443231e5b72ac7153675a03029d
|
| 3 |
+
size 21619195872
|