Instructions to use pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-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 pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-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 pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S # Run inference directly in the terminal: llama cli -hf pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S # Run inference directly in the terminal: llama cli -hf pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
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 pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S # Run inference directly in the terminal: ./llama-cli -hf pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
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 pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S # Run inference directly in the terminal: ./build/bin/llama-cli -hf pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
Use Docker
docker model run hf.co/pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
- LM Studio
- Jan
- vLLM
How to use pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-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": "pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-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/pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
- Ollama
How to use pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF with Ollama:
ollama run hf.co/pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
- Unsloth Desktop
- Pi
How to use pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
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": "pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF with Docker Model Runner:
docker model run hf.co/pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
- Lemonade
How to use pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
Run and chat with the model
lemonade run user.MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF-Q3_K_S
List all available models
lemonade list
- Hermes Agent
How to use pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-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 pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
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 pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S
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 "pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF:Q3_K_S" \ --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"
MiniMax-H3 Text Encoder โ Qwen3-VL-32B (abliterated) ยท GGUF
GGUF (llama.cpp) builds of the MiniMax-H3 text encoder โ abliterated Qwen3-VL-32B, 50 layers, Q3_K_S (โ3.53 BPW).
Files
| File | Size | Visual tower | Use for |
|---|---|---|---|
MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-Q3_K_S.gguf |
~11.5 GB | โ (text only) | plain llama.cpp text-encoder use |
MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-Q3_K_S_vis.gguf |
~12.6 GB | โ merged in | ComfyUI (MiniMax-H3 pipeline) |
For ComfyUI use the _vis file. ComfyUI detects the H3 text encoder via the visual tower tensors (visual.deepstack_merger_list.* + model.layers.49.*); the plain file lacks them and won't be recognized. The _vis build has the BF16 visual tower merged back in.
- Layers: 50 (H3 consumes the hidden state after layer 50) ยท Arch:
qwen3vlยท Base: abliterated Qwen3-VL-32B-Instruct.
For the vLLM-Omni-ready NVFP4-AWQ build, see pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-NVFP4-AWQ.
Abliterated / uncensored derivative, released as a component for the MiniMax-H3 text-to-video / image-to-video pipeline.
- Downloads last month
- -
3-bit
Model tree for pottokao/MiniMax-H3-TextEncoder-Qwen3VL-32B-abliterated-GGUF
Base model
Qwen/Qwen3-VL-32B-Instruct