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
- Hermes Agent new
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
- 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
- Atomic Chat
Upload folder using huggingface_hub
Browse files- .gitattributes +9 -0
- UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00001-of-00009.gguf +3 -0
- UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00002-of-00009.gguf +3 -0
- UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00003-of-00009.gguf +3 -0
- UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00004-of-00009.gguf +3 -0
- UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00005-of-00009.gguf +3 -0
- UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00006-of-00009.gguf +3 -0
- UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00007-of-00009.gguf +3 -0
- UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00008-of-00009.gguf +3 -0
- UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00009-of-00009.gguf +3 -0
.gitattributes
CHANGED
|
@@ -137,3 +137,12 @@ 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|
| 140 |
+
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00001-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 141 |
+
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00002-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 142 |
+
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00003-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 143 |
+
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00004-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 144 |
+
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00005-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 145 |
+
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00006-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 146 |
+
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00007-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 147 |
+
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00008-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
| 148 |
+
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00009-of-00009.gguf filter=lfs diff=lfs merge=lfs -text
|
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00001-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:96f3ab7621c87edb87826e302168acdd4a26ce85c2219af21dc5cb0f0b221b4f
|
| 3 |
+
size 8243104
|
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00002-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9879c7a223939d009473dedf46edef1f6237a412731b2cf08f90719dcbec396f
|
| 3 |
+
size 48625924448
|
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00003-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:60d356b8a2c10997e258d87802d79b69716d3f3f8269d1a40d91ed7fefa085d2
|
| 3 |
+
size 49068240544
|
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00004-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5535fef20f9a38a04342796611a24e200192f4f8a6cdfb2da6ed6b0b98bc216c
|
| 3 |
+
size 49539679936
|
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00005-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8e5ed846fa142abb801a7820da863f6c784f125af574b8e056dee94be916579
|
| 3 |
+
size 48957744960
|
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00006-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:93d8957a21aa4677c9a1bca5b84b12d55a6574b245e2cbed50a08d63ec94fe04
|
| 3 |
+
size 49068240544
|
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00007-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9039630a06cbaaa1d5fcaae997ade4375b4d3bf21189be37693e8242b02fe4a7
|
| 3 |
+
size 49539679936
|
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00008-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f952d996b0049b5950cc4c1a9076c9244697bf4342721cd5a9f9c7d2ade0624e
|
| 3 |
+
size 48957744960
|
UD-Q6_K_XL/MiniMax-M3-UD-Q6_K_XL-00009-of-00009.gguf
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:27cf1d90e916c31ae10770944791c9605520219c89b5d89d61a6e599c68f7f7a
|
| 3 |
+
size 43417255104
|