Instructions to use botp/supergemma4-26b-abliterated-multimodal-mlx-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use botp/supergemma4-26b-abliterated-multimodal-mlx-4bit with MLX:
# Make sure mlx-vlm is installed # pip install --upgrade mlx-vlm from mlx_vlm import load, generate from mlx_vlm.prompt_utils import apply_chat_template from mlx_vlm.utils import load_config # Load the model model, processor = load("botp/supergemma4-26b-abliterated-multimodal-mlx-4bit") config = load_config("botp/supergemma4-26b-abliterated-multimodal-mlx-4bit") # Prepare input image = ["http://images.cocodataset.org/val2017/000000039769.jpg"] prompt = "Describe this image." # Apply chat template formatted_prompt = apply_chat_template( processor, config, prompt, num_images=1 ) # Generate output output = generate(model, processor, formatted_prompt, image) print(output) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Pi
How to use botp/supergemma4-26b-abliterated-multimodal-mlx-4bit with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "botp/supergemma4-26b-abliterated-multimodal-mlx-4bit"
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "botp/supergemma4-26b-abliterated-multimodal-mlx-4bit" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use botp/supergemma4-26b-abliterated-multimodal-mlx-4bit with Hermes Agent:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "botp/supergemma4-26b-abliterated-multimodal-mlx-4bit"
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 botp/supergemma4-26b-abliterated-multimodal-mlx-4bit
Run Hermes
hermes
Support ongoing open-source work: ko-fi.com/jiunsong
SuperGemma4-26B-Abliterated-Multimodal MLX 4bit
This is the lighter-weight MLX build of Jiunsong/supergemma4-26b-abliterated-multimodal.
It preserves multimodal behavior while reducing local storage and memory demand for Apple Silicon setups that want a smaller package.
Important note on the Hugging Face size badge
If the Hub UI shows this repo as a smaller class such as 5B or 8B, that is a Hub-side auto-inference artifact from the exported MLX quantized config.
This repo is still a quantized release of the full SuperGemma4-26B-Abliterated-Multimodal line derived from the Gemma 4 26B-A4B multimodal family. The smaller badge does not mean the model was accidentally converted into a different 5B or 8B model.
Why this variant
- Smaller MLX footprint for local use
- Keeps text + vision support
- Preserves the abliterated / low-refusal behavior of the main release
- Good option when you want better fit on-device without dropping multimodality
- Verified with both text-only and image-grounded prompts
Validation
- Text check: returned
READY - Image check: returned
redfor a solid red test image - Disk footprint: about
15 GB
Recommended use
Pick this version when you want a smaller MLX package and are willing to trade a bit of precision for a lighter local deployment.
Quick start
python3 -m mlx_vlm.server \
--model /absolute/path/to/supergemma4-26b-abliterated-multimodal-mlx-4bit \
--host 127.0.0.1 \
--port 8091
from mlx_vlm import load
model, processor = load("/absolute/path/to/supergemma4-26b-abliterated-multimodal-mlx-4bit")
print("Loaded.")
- Downloads last month
- 142
4-bit