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 Studio
How to use unsloth/MiniMax-M3-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 unsloth/MiniMax-M3-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 unsloth/MiniMax-M3-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for unsloth/MiniMax-M3-GGUF to start chatting
- 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 @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": "unsloth/MiniMax-M3-GGUF:UD-Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
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"
- 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
Upload folder using huggingface_hub
Browse files- .gitattributes +7 -0
- MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00001-of-00007.gguf +3 -0
- MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00002-of-00007.gguf +3 -0
- MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00003-of-00007.gguf +3 -0
- MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00004-of-00007.gguf +3 -0
- MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00005-of-00007.gguf +3 -0
- MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00006-of-00007.gguf +3 -0
- MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00007-of-00007.gguf +3 -0
.gitattributes
CHANGED
|
@@ -119,3 +119,10 @@ UD-Q5_K_S/MiniMax-M3-UD-Q5_K_S-00005-of-00008.gguf filter=lfs diff=lfs merge=lfs
|
|
| 119 |
UD-Q5_K_S/MiniMax-M3-UD-Q5_K_S-00006-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 120 |
UD-Q5_K_S/MiniMax-M3-UD-Q5_K_S-00007-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 121 |
UD-Q5_K_S/MiniMax-M3-UD-Q5_K_S-00008-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
UD-Q5_K_S/MiniMax-M3-UD-Q5_K_S-00006-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 120 |
UD-Q5_K_S/MiniMax-M3-UD-Q5_K_S-00007-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 121 |
UD-Q5_K_S/MiniMax-M3-UD-Q5_K_S-00008-of-00008.gguf filter=lfs diff=lfs merge=lfs -text
|
| 122 |
+
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00001-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 123 |
+
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00002-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 124 |
+
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00003-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 125 |
+
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00004-of-00007.gguf filter=lfs diff=lfs merge=lfs -text
|
| 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
|
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00001-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c74465b7a9a24e38a6e762e6b7cbd62dcacd11dd33b6361c55bee92657b951be
|
| 3 |
+
size 8243104
|
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00002-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:72dad74b69adfec3ceaef07b360f62893f1b23a5925d36d0ca0f0f417ef390d7
|
| 3 |
+
size 49518313504
|
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00003-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7b8eaf23c24ea2f4b8c1704b4bf577ff5f33e91c3b698b4cc466fbd8615f1753
|
| 3 |
+
size 49760112416
|
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00004-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5ae0b69e2baaf378d987fbc544695fe560cfdfd9930dba9824ecb88194bc5c94
|
| 3 |
+
size 49870607968
|
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00005-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fbbb37659484c96f8a52d0dd5b7b34b217caaad15fe765eb6ab79be1b2a2c59f
|
| 3 |
+
size 48453430784
|
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00006-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cbaf36461f9c72626a6448e324c6f4a2c7e5b979b3ba39a861eb4f29b9162861
|
| 3 |
+
size 48774295040
|
MXFP4_MOE/MiniMax-M3-MXFP4_MOE-00007-of-00007.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:98bfcedebc8b0efc113753d419ae32e2cf1b581d0888a0b5f9e6d1c07b9266c2
|
| 3 |
+
size 10092752032
|