Instructions to use prithivMLmods/Muse-Glimmer-30B-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prithivMLmods/Muse-Glimmer-30B-GGUF with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="prithivMLmods/Muse-Glimmer-30B-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("prithivMLmods/Muse-Glimmer-30B-GGUF", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use prithivMLmods/Muse-Glimmer-30B-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 prithivMLmods/Muse-Glimmer-30B-GGUF:F16 # Run inference directly in the terminal: llama cli -hf prithivMLmods/Muse-Glimmer-30B-GGUF:F16
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf prithivMLmods/Muse-Glimmer-30B-GGUF:F16 # Run inference directly in the terminal: llama cli -hf prithivMLmods/Muse-Glimmer-30B-GGUF:F16
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 prithivMLmods/Muse-Glimmer-30B-GGUF:F16 # Run inference directly in the terminal: ./llama-cli -hf prithivMLmods/Muse-Glimmer-30B-GGUF:F16
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 prithivMLmods/Muse-Glimmer-30B-GGUF:F16 # Run inference directly in the terminal: ./build/bin/llama-cli -hf prithivMLmods/Muse-Glimmer-30B-GGUF:F16
Use Docker
docker model run hf.co/prithivMLmods/Muse-Glimmer-30B-GGUF:F16
- LM Studio
- Jan
- vLLM
How to use prithivMLmods/Muse-Glimmer-30B-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "prithivMLmods/Muse-Glimmer-30B-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": "prithivMLmods/Muse-Glimmer-30B-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/prithivMLmods/Muse-Glimmer-30B-GGUF:F16
- SGLang
How to use prithivMLmods/Muse-Glimmer-30B-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 "prithivMLmods/Muse-Glimmer-30B-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": "prithivMLmods/Muse-Glimmer-30B-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 "prithivMLmods/Muse-Glimmer-30B-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": "prithivMLmods/Muse-Glimmer-30B-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 prithivMLmods/Muse-Glimmer-30B-GGUF with Ollama:
ollama run hf.co/prithivMLmods/Muse-Glimmer-30B-GGUF:F16
- Unsloth Studio
How to use prithivMLmods/Muse-Glimmer-30B-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 prithivMLmods/Muse-Glimmer-30B-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 prithivMLmods/Muse-Glimmer-30B-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for prithivMLmods/Muse-Glimmer-30B-GGUF to start chatting
- Pi
How to use prithivMLmods/Muse-Glimmer-30B-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf prithivMLmods/Muse-Glimmer-30B-GGUF:F16
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": "prithivMLmods/Muse-Glimmer-30B-GGUF:F16" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use prithivMLmods/Muse-Glimmer-30B-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf prithivMLmods/Muse-Glimmer-30B-GGUF:F16
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 "prithivMLmods/Muse-Glimmer-30B-GGUF:F16" \ --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 prithivMLmods/Muse-Glimmer-30B-GGUF with Docker Model Runner:
docker model run hf.co/prithivMLmods/Muse-Glimmer-30B-GGUF:F16
- Lemonade
How to use prithivMLmods/Muse-Glimmer-30B-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull prithivMLmods/Muse-Glimmer-30B-GGUF:F16
Run and chat with the model
lemonade run user.Muse-Glimmer-30B-GGUF-F16
List all available models
lemonade list
- Hermes Agent
How to use prithivMLmods/Muse-Glimmer-30B-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 prithivMLmods/Muse-Glimmer-30B-GGUF:F16
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 prithivMLmods/Muse-Glimmer-30B-GGUF:F16
Run Hermes
hermes
- Atomic Chat
Muse-Glimmer-30B-GGUF
Muse Glimmer is a 30-billion-parameter (29.6B including vision encoder) dense causal language model with a dedicated ~1.8B-parameter ViT-G/14 perception encoder, released by Meta Superintelligence Lab as a distillation of Muse Spark purpose-built for autonomous agentic tasks running entirely on consumer hardware without cloud infrastructure. It integrates multi-step reasoning, reliable schema-based tool use, multimodal understanding (interleaved text and images), and failure recovery into a single locally-runnable model, with a 131K+ token context window, controllable reasoning strength (low/medium/high/xhigh), and compatibility with agentic scaffolds like OpenClaw and Hermes Agent. Optimized for on-device deployment, 4-bit quantization shrinks the model under 20GB with minimal degradation (0.2–1.0% across 15 benchmarks), and it ships with a DFlash speculative-decoding drafter that predicts 16-token blocks for up to 3.1x generation speedup on an RTX 5090 (233 tok/s) and 1.8x on an Apple M5 Max (50 tok/s). On agentic and reasoning benchmarks, Muse Glimmer generally outperforms similarly-sized Gemma4-31B and often trades blows with or edges out Qwen3.6-27B — leading on MCP Atlas (75.5), DeepSearch QA (74.6), Gaia2 (43.3), and AIME 2026 (94.7) — while trailing on tasks like OSWorld-Verified and TerminalBench 2.1; it was assessed by Meta's Preparedness Team at "moderate or lower" risk across chem/bio, cyber, and loss-of-control axes, trained with safety SFT and RL for tool-use boundaries and prompt-injection resistance, and is released under Apache 2.0 with full-precision, two 4-bit quantized variants, the DFlash drafter, and the perception encoder all publicly available; it is not intended for use by individuals under 18.
Limitations from Meta
- The model may produce inaccurate, biased, or objectionable responses to user prompts.
- While optimized for agentic tasks, the model may still make errors in multi-step reasoning, particularly in novel scenarios not well represented in training data.
- The model is not explicitly optimized for video; video input is processed as individual frames.
- The model has not been evaluated on all languages contained in the pre-training data. Performance may degrade on languages outside the strongly supported set.
- Quantized inference may show minor quality differences in edge cases compared to full-precision.
- The model is not intended to be downloaded by or used by individuals under the age of 18. Where deployed within systems that may be used by individuals under the age of 18, deployers are responsible for ensuring that any risks associated with such use by individuals under the age of 18 has been fully assessed and appropriately mitigated, and complies with all applicable laws.
- Visit the original model page: Muse-Glimmer-30B — Considerations and Limitations
- Responsible Use: Developers should perform their own safety testing and tuning tailored to their specific applications and proposed languages. Our Usage Policy can be found here [link]. We recommend implementing additional guardrails (such as human-in-the-loop confirmation for irreversible actions) when deploying the model in agentic contexts where it can take real-world actions.
Model Files
| File Name | Quant Type | File Size | File Link |
|---|---|---|---|
| Muse-Glimmer-30B.F16.gguf | F16 | 55.7 GB | Download |
| Muse-Glimmer-30B.Q4_K_M.gguf | Q4_K_M | 16.9 GB | Download |
| Muse-Glimmer-30B.mmproj-f16.gguf | mmproj-f16 | 3.85 GB | Download |
llama.cpp
LLM inference in C/C++ — https://github.com/ggml-org/llama.cpp
- Downloads last month
- -
4-bit
16-bit
Model tree for prithivMLmods/Muse-Glimmer-30B-GGUF
Base model
meta-models/Muse-Glimmer-30B