Instructions to use sahilchachra/Muse-Glimmer-30B-MXFP8 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use sahilchachra/Muse-Glimmer-30B-MXFP8 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("sahilchachra/Muse-Glimmer-30B-MXFP8") config = load_config("sahilchachra/Muse-Glimmer-30B-MXFP8") # 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 sahilchachra/Muse-Glimmer-30B-MXFP8 with Pi:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "sahilchachra/Muse-Glimmer-30B-MXFP8"
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "mlx-lm": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "sahilchachra/Muse-Glimmer-30B-MXFP8" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent
How to use sahilchachra/Muse-Glimmer-30B-MXFP8 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 "sahilchachra/Muse-Glimmer-30B-MXFP8"
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 sahilchachra/Muse-Glimmer-30B-MXFP8
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use sahilchachra/Muse-Glimmer-30B-MXFP8 with OpenClaw:
Start the MLX server
# Install MLX LM: uv tool install mlx-lm # Start a local OpenAI-compatible server: mlx_lm.server --model "sahilchachra/Muse-Glimmer-30B-MXFP8"
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 "sahilchachra/Muse-Glimmer-30B-MXFP8" \ --custom-provider-id mlx-lm \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
Configure the model in Pi
# Install Pi:
npm install -g @earendil-works/pi-coding-agent# Add to ~/.pi/agent/models.json:
{
"providers": {
"mlx-lm": {
"baseUrl": "http://localhost:8080/v1",
"api": "openai-completions",
"apiKey": "none",
"models": [
{
"id": "sahilchachra/Muse-Glimmer-30B-MXFP8"
}
]
}
}
}Run Pi
# Start Pi in your project directory:
piMuse-Glimmer-30B — MLX MXFP8
MLX MXFP8 (8-bit microscaling float) quantization of
meta-models/Muse-Glimmer-30B,
a ~30B dense causal transformer with a ~1.8B perception encoder, built for
autonomous agentic tasks on consumer hardware. Runs on Apple Silicon via
mlx-vlm. Stays image-text-to-text —
the vision tower and projector are kept in bf16.
| Precision | MXFP8 (E4M3 + E8M0 shared scale, group size 32) |
| Bits per weight | 8.751 bpw |
| On-disk size | 32.6 GB |
| Quantized | language model (incl. lm_head) |
| Kept in bf16 | vision tower + vision adapter/projection |
| Recommended RAM | 32 GB+ unified memory |
This is the higher-fidelity build, for 32 GB+ Macs. On a 24 GB machine it exceeds RAM and pages to swap (usable only very slowly); use the MXFP4 build (18.6 GB) there instead.
Verification
Quantized with mlx_lm.quantize_model (mode mxfp8, group 32), keeping the
vision path in bf16. The MLX implementation correctly handles this
architecture's non-standard pieces (per-layer NoPE on the full-attention layers,
final_logit_softcapping, qk_scale_factor, output_multiplier, gated
attention, centered RMSNorm).
MXFP8 was validated against the MXFP4 build, which passed 6/6 arithmetic prompts end-to-end with correct answers and coherent reasoning. On a fixed 8-prompt set (arithmetic + open-ended), MXFP8's next-token predictions were captured and compared to MXFP4:
| Metric | MXFP8 vs MXFP4 |
|---|---|
| top-1 next-token agreement | 8/8 |
| logit cosine similarity | 0.998 (min 0.997) |
Since MXFP8 uses more bits than the behaviorally-verified MXFP4 and agrees with it this closely, it is at least as faithful to the base model. (Full token-by- token generation was not benchmarked here because 32.6 GB exceeds the 24 GB test machine's RAM; on a 32 GB+ Mac it generates at normal speed.)
Usage (mlx-vlm)
pip install -U mlx-vlm # needs >= 0.6.12 for the muse_glimmer architecture
from mlx_vlm import load, generate
from mlx_vlm.prompt_utils import apply_chat_template
model, processor = load("sahilchachra/Muse-Glimmer-30B-MXFP8")
config = model.config
messages = [{"role": "user", "content": "What is 84 * 3 / 2?"}]
prompt = apply_chat_template(processor, config, messages, add_generation_prompt=True)
text = generate(model, processor, prompt, max_tokens=256, verbose=True)
For image input, pass an image to apply_chat_template / generate per the
mlx-vlm docs — the vision path is preserved in bf16.
Recommended sampling (from the base model card): temperature=1.0,
top_p=0.95, top_k=64. Reasoning strength is set via the system prompt
(Reasoning strength: low|medium|high|xhigh).
Notes & limitations
- Inherits all capabilities and limitations of the base model. See the original model card and usage policy.
- Quantized by @sahilchachra with MLX. Original model © Meta Superintelligence Lab, Apache 2.0.
- Downloads last month
- 417
8-bit
Model tree for sahilchachra/Muse-Glimmer-30B-MXFP8
Base model
meta-models/Muse-Glimmer-30B
Start the MLX server
# Install MLX LM: uv tool install mlx-lm# Start a local OpenAI-compatible server: mlx_lm.server --model "sahilchachra/Muse-Glimmer-30B-MXFP8"