{"slug": "meta-is-back-with-muse-glimmer-local-agentic-multimodal-and-open-source", "title": "Meta is back with Muse Glimmer: local, agentic, multimodal, and open source", "summary": "Meta released Muse Glimmer, a 30B-parameter multimodal AI model under the Apache 2.0 license, designed for local deployment in privacy-aware applications such as coding and document analysis. The model features a 2B vision encoder and a 28B text decoder with hybrid attention, and Hugging Face announced day-0 support in transformers, llama.cpp, vLLM, and Inference Endpoints.", "body_md": "Image-Text-to-Text • Updated • 194\n\n# Meta is back with Muse Glimmer: local, agentic, multimodal, and open source!\n\n[Update on GitHub](https://github.com/huggingface/blog/blob/main/muse-glimmer.md)\n\n**30B** parameters, and released under the\n\n**Apache 2.0 license**, it’s ideal deploying locally for privacy, reducing costs, or just hacking around. It’s intended for privacy-aware applications such as coding, document analysis, personal assistants, Claw- or Hermes-like setups.\n\nTo celebrate, we are shipping with Meta day-0 support in `transformers`\n\n, `llama.cpp`\n\n, `vLLM`\n\n, Inference Endpoints, and other libraries. We built a few cool things and explain our findings in this blog. **Check out the demos below for inspiration.**\nYou can find all Muse Glimmer models [in this collection](https://huggingface.co/collections/meta-models/muse-glimmer).\n\n## Architecture\n\nMuse Glimmer is a dense 30B parameter model consisting of:\n\n- 2B ViT-style encoder for vision (Perception Encoder)\n- 28B parameter text decoder\n\nIn addition to the main VLM, there’s also a speculative decoding drafter implemented on DFlash. Usage of this module is optional, and it can provide much faster generation in exchange for some memory cost. We found this drafter to be particularly well suited to structured content generation such as coding.\n\n### Text Decoder\n\nThe language model uses the following architecture components:\n\n**Hybrid attention:** Alternating between three sliding window layers (of 2,048 tokens) using rotary position embedding, followed by a fourth layer that uses full attention and NoPE (no positional embedding). The pattern is therefore (SWA, SWA, SWA, Full), repeated 13 times to a total of 52 layers. This allows the model to retain relative order and distance information with RoPE and preserve information globally with NoPE.**Gated Grouped-Query Attention:** Each key-value head is shared by 16 query heads, which reduces KV-cache memory by 16x and makes generation faster and cheaper.**Q-K normalization with extra query scaling:** Before computing attention, Muse Glimmer applies RMS normalization to every query and key head to keep attention logits stable. After this, queries are multiplied by a scale factor to set the target logit scale after normalization. The extra query scaling behaves like an inverse temperature at the softmax level.\n\n### Perception Encoder\n\nMuse Glimmer uses one image encoder to handle both images and videos. Unlike the relatively small vision encoders used in other VLMs, this is a sizable 2B ViT-like model designed after the Perception Encoder architecture. Perception Encoder was previously introduced by Meta [as a backbone for various downstream spatial and multimodal tasks](https://huggingface.co/papers/2504.13181).\n\nThe encoder patchifies images to a shape of 2 frames x 3 channels x 14 x 14, and passes them through a linear layer for projection. An interpolated absolute position embedding from a learned position table is then added to these embeddings. These are then sent to the vision tower which consist of 50 layers and GELU MLPs. Similar to the language model, the attention pattern consists of three window attention layers followed by one full attention layer. Inside the attention layers, 2D RoPE is applied to the queries and keys.\n\nAfter transformer, pixel shuffle concatenates 2x2 groups of neighboring spatial tokens which reduces the number of image tokens 4x without discarding their channels. The merged features are then projected to the shared embedding space of the text decoder.\n\nVideos go through the same encoder frame by frame, where each frame is converted into patches (of shape [batch, temporal groups, grid height, grid width, 2 frames, 3 channels, 14, 14]). The processor targets 2 frames per second and caps the clip at 96 frames sampled evenly across video. The processor creates timestamped video placeholders, interleaving text with frame e.g. “Time: 0.0s <|video|> x N” in which the final video embeddings are replaced before the final projection layer.\n\n### Transformers\n\nUpgrade transformers to the latest version to be able to use Muse Glimmer.\n\n```\npip install --upgrade transformers accelerate\n```\n\nMuse Glimmer comes with day-0 support in transformers, both for the main model and the speculative decoding drafter. You can use `AutoModelForMultimodalLM`\n\nand `AutoProcessor`\n\nclasses to load the model and the processor.\n\n``` python\nfrom transformers import AutoProcessor, AutoModelForMultimodalLM\n\nMODEL_ID = \"meta/Muse-Glimmer-30B\"\n\n# Load model\nprocessor = AutoProcessor.from_pretrained(MODEL_ID)\nmodel = AutoModelForMultimodalLM.from_pretrained(\n    MODEL_ID,\n    dtype=\"auto\",\n    device_map=\"auto\"\n)\n```\n\nThe same snippet runs unchanged on NVIDIA (CUDA), AMD (ROCm) and Intel (XPU) GPUs, `device_map=\"auto\"`\n\nplaces the model on whichever accelerator is available.\n\n#### Text-only Inference\n\nAfter loading the model, you can do text-only inference with it as follows.\n\n```\n# Prompt\nmessages = [\n    {\"role\": \"user\", \"content\": \"Write a short joke about saving RAM.\"},\n]\n\n# Process input\ninputs = processor.apply_chat_template(\n    messages,\n    tokenize=True,\n    return_dict=True,\n    return_tensors=\"pt\",\n    add_generation_prompt=True,\n    reasoning_strength=\"low\"\n).to(model.device)\ninput_len = inputs[\"input_ids\"].shape[-1]\n\n# Generate output\noutputs = model.generate(**inputs, max_new_tokens=1024)\nresponse = processor.decode(outputs[0][input_len:], skip_special_tokens=False)\nprint(response)\n```\n\n#### Prompting the model with images and text\n\nWe would need `torchvision`\n\nto be able to use images and text.\n\n```\npip install torchvision\n```\n\nMuse Glimmer accepts images as input, as demonstrated here:\n\n```\nmessages = [\n    {\n        \"role\": \"user\", \"content\": [\n            {\"type\": \"image\", \"image\": \"https://huggingface.co/datasets/merve/vl-test-suite/resolve/main/SF.png\"},\n            {\"type\": \"text\", \"text\": \"What is shown in this image?\"}\n        ]\n    }\n]\n\ninputs = processor.apply_chat_template(\n    messages,\n    tokenize=True,\n    return_dict=True,\n    return_tensors=\"pt\",\n    add_generation_prompt=True,\n    reasoning_strength=\"low\"\n).to(model.device)\ninput_len = inputs[\"input_ids\"].shape[-1]\n\n# Generate output\noutputs = model.generate(**inputs, max_new_tokens=512)\nresponse = processor.decode(outputs[0][input_len:], skip_special_tokens=False)\nprint(response)\n```\n\n#### Multimodal tool calling\n\nMuse Glimmer can do multimodal tool calling, here’s how you can do it. In the example below, we ask the model to call the weather tool based on the city in the image.\n\n``` python\nimport json\nimport re\n\ntools = [\n    {\n        \"type\": \"function\",\n        \"function\": {\n            \"name\": \"weather.get\",\n            \"description\": \"Get the current weather for a city.\",\n            \"parameters\": {\n                \"type\": \"object\",\n                \"properties\": {\n                    \"city\": {\"type\": \"string\"},\n                },\n                \"required\": [\"city\"],\n            },\n        },\n    }\n]\n\nmessages = [\n    {\n        \"role\": \"user\",\n        \"content\": [\n            {\"type\": \"image\", \"image\": \"https://huggingface.co/datasets/merve/vl-test-suite/resolve/main/SF.png\"},\n            {\"type\": \"text\", \"text\": \"I'm going to the city in this picture. What clothes should I wear?\"},\n        ],\n    },\n]\n\ninputs = processor.apply_chat_template(\n    messages,\n    tools=tools,\n    tokenize=True,\n    return_dict=True,\n    return_tensors=\"pt\",\n    add_generation_prompt=True,\n    reasoning_strength=\"low\"\n).to(model.device)\n\ninput_len = inputs[\"input_ids\"].shape[-1]\noutputs = model.generate(**inputs, max_new_tokens=128)\nresponse = processor.decode(outputs[0][input_len:], skip_special_tokens=False)\n\nparsed = processor.tokenizer.parse_response(response)\n```\n\n#### Object Detection\n\nYou can use Muse Glimmer to do open ended object detection in images as follows.\n\n``` python\nimport json\n\nmessages = [{\n    \"role\": \"user\",\n    \"content\": [\n        {\"type\": \"image\", \"image\": \"https://huggingface.co/datasets/merve/vl-test-suite/resolve/main/SF.png\"},\n        {\n            \"type\": \"text\",\n            \"text\": (\n                \"Detect the bridge. Return only the detection in the model's \"\n                \"native object-detection format, with no explanation.\"\n            ),\n        },\n    ],\n}]\n\ninputs = processor.apply_chat_template(\n    messages,\n    tokenize=True,\n    return_dict=True,\n    return_tensors=\"pt\",\n    add_generation_prompt=True,\n).to(model.device)\n\ninput_len = inputs[\"input_ids\"].shape[-1]\noutputs = model.generate(**inputs, max_new_tokens=128)\nresponse = processor.decode(outputs[0][input_len:], skip_special_tokens=False)\n\ndetections = json.loads(response.removesuffix(\"<|eot|>\"))\nprint(detections)\n# [{\"x_min\": 0, \"y_min\": 390, \"x_max\": 520, \"y_max\": 603}]\n\n# note that you need to scale X and Y values to image size to visualize:\nxyxy = (\nround(box[\"x_min\"] / 1000 * width),\nround(box[\"y_min\"] / 1000 * height),\nround(box[\"x_max\"] / 1000 * width),\nround(box[\"y_max\"] / 1000 * height),\n)\n```\n\n#### Video Inference\n\nTo work with videos we recommend installing `torchcodec`\n\ninto the environment.\n\n```\npip install torchcodec\n```\n\nMuse Glimmer can answer complex questions about videos without audio. You can do video inference as follows, here’s an example from VideoMME2, which is the most popular video question answering benchmark.\n\n```\nmessages = [\n    {\"role\": \"system\", \"content\": \"You are a helpful assistant.\"},\n    {\n        \"role\": \"user\",\n        \"content\": [\n            {\"type\": \"video\", \"video\": \"https://huggingface.co/datasets/merve/vl-test-suite/resolve/main/IMG_8137.mp4\"},\n            {\"type\": \"text\", \"text\": \"Describe what happens in this video.\"},\n        ],\n    },\n]\ninputs = processor.apply_chat_template(\n    messages,\n    tokenize=True,\n    return_dict=True,\n    return_tensors=\"pt\",\n    add_generation_prompt=True,\n    reasoning_strength=\"low\",\n    processor_kwargs={\"num_frames\": 96},\n).to(model.device)\n\ninput_len = inputs[\"input_ids\"].shape[-1]\noutputs = model.generate(**inputs, max_new_tokens=1024)\n\nresponse = processor.decode(\n    outputs[0, input_len:],\n    skip_special_tokens=False,\n)\n\nparsed = processor.parse_response(\n    response,\n    prefix=inputs[\"input_ids\"],\n)\nprint(parsed)\n```\n\n### Llama.cpp\n\nMuse Glimmer comes with day-0 llama.cpp support. Meta has distributed calibrated quants in [this repo](https://huggingface.co/meta-models/Muse-Glimmer-30B-GGUF), and Uunsloth is releasing optimized quants as well. DFlash speculative decoding is supported as well. You can use a pre-built llama binary to start a llama server or a CLI. To install llama.cpp, run\n\n```\ncurl -LsSf https://llama.app/install.sh | sh\n```\n\nThen you can start the server as follows.\n\n```\nllama serve meta-models/Muse-Glimmer-30B-GGUF\n```\n\nOnce the server has started, you can head to localhost:8080 to chat with the built-in WebUI.\n\nTODO: Insert webui video with this model\n\nYou can also query the server as follows.\n\n```\ncurl http://localhost:8080/v1/chat/completions \\\n    -H \"Content-Type: application/json\" \\\n    -d '{\n        \"messages\": [\n            {\"role\": \"system\", \"content\": \"You are a helpful assistant.\"},\n            {\"role\": \"user\", \"content\": \"Write a limerick about python exceptions\"}\n        ]\n    }'\n```\n\nYou can also use llama server with coding agents like Pi.\n\n## Speculative Decoding\n\nDFlash uses a lightweight block-diffusion drafter model to provide same output with extra speed-ups in decoding phase. Transformers and llama.cpp ship support for DFlash drafter of Muse Glimmer day-0.\n\nBelow you can see how speculative decoding can speed-up generation in realistic setups. The video shows llama.cpp webui with DFlash on the left and regular generation on the right.\n\n### Speculative Decoding with transformersYou can load the drafter and model as follows, and infer like how you would with base model with an additional parameter (shown in the upcoming snippets).\n\n``` python\nimport torch\nfrom transformers import AutoProcessor, MuseGlimmerAssistantModel, MuseGlimmerForConditionalGeneration\n\nmodel_id = \"meta-models/Muse-Glimmer-30B\"\ntarget = MuseGlimmerForConditionalGeneration.from_pretrained(model_id, dtype=torch.bfloat16, device_map=\"auto\")\nassistant = MuseGlimmerAssistantModel.from_pretrained(model_id, dtype=torch.bfloat16, device_map=\"auto\")\nprocessor = AutoProcessor.from_pretrained(model_id)\n\nmessages = [\n    {\n        \"role\": \"user\", \"content\": [\n            {\"type\": \"image\", \"url\": \"https://huggingface.co/datasets/merve/vl-test-suite/resolve/main/SF.png\"},\n            {\"type\": \"text\", \"text\": \"What is shown in this image?\"}\n        ]\n    }\n]\n\nout = target.generate(**inputs, assistant_model=assistant, speculation_type=\"dflash\", max_new_tokens=64, do_sample=True)\nprint(processor.batch_decode(out)[0])\n```\n\n### Speculative Decoding with llama.cpp\n\nYou can start llama server using following command. `--spec-draft-n-max`\n\nargument controls how many future tokens DFlash proposes during each speculative-decoding step. Muse Glimmer’s DFlash model was trained with a block size of 16, one anchor token plus 15 proposed tokens, so any value above 15 will be clamped to 15.\n\n```\nllama serve -hf meta-models/Muse-Glimmer-30B-GGUF --spec-type draft-dflash --spec-draft-n-max 15\n```\n\nYou can also use llama cli with speculative decoding drafter as follows.\n\n```\nllama cli -hf meta-models/Muse-Glimmer-30B-GGUF --spec-type draft-dflash\n```\n\n## Support for Muse Glimmer vLLM with transformers backend\n\nFor this release, we ship support for vLLM with transformers backend.\n\n```\n# tensor parallel serving across 4 GPUs\nvllm serve meta-models/Muse-Glimmer-30B --model-impl transformers --tensor-parallel-size 4\n\n# infer\ncurl -s http://127.0.0.1:8000/v1/chat/completions \\\n    -H 'Content-Type: application/json' \\\n    -d '{\n      \"model\": \"username/muse-glimmer-hf-v2\",\n      \"messages\": [\n        {\"role\": \"user\", \"content\": \"Explain tensor parallelism briefly.\"}\n      ],\n      \"temperature\": 0.0,\n      \"max_tokens\": 256\n    }'\n```\n\n## Fine-tuning with TRL\n\nYou can use TRL to fine-tune Muse Glimmer using various methods from SFT to Async GRPO. We have run two experiments on bf16 with Hopper-class GPUs with 80GB VRAM each.\n\n| Workload | Practical minimum |\n|---|---|\n| Inference / eval, BF16 | 1×80 GB H100 |\n| LoRA SFT, BF16 | 1×80 GB H100, microbatch 1 + checkpointing |\n| Full SFT, BF16 | 8×80 GB H100 with FSDP/ZeRO-3 |\n| LoRA GRPO, Transformers rollouts | 1×80 GB H100, but slow/tight |\n| LoRA GRPO, separate vLLM rollout server | 8×H100: 4 rollout + 4 training |\n| Full-finetune GRPO | 8 GPUs is usually insufficient |\n\nAs part of this release, we ship an example to fine-tune [Muse Glimmer on small split of MolmoWeb dataset](https://huggingface.co/merve/smol-vision/blob/main/qlora_click_grounding.ipynb). This shows how to make model generate structured outputs and how to fine-tune on images.\n\nWe also experimented with running the model on [OpenCode with AsyncGRPO example](https://github.com/huggingface/trl/blob/main/examples/scripts/openenv/opencode.py). Model shows strong coding capabilities, so we encourage you to try training with coding environments.\n\n## Demos\n\nHere are some fun ways to try out Muse Glimmer. In our opinion, the coolest thing about this model is that it is a local scale personal assistant that can code. That means you can make it do things like, quantize itself, find quantized weights on the Hub, deploy itself to inference endpoints, and even optimize itself for specific hardware! Let’s go team local 🚀\n\n## Connect OpenClaw to Muse Glimmer\n\nAssume the Inference Endpoint exposes an OpenAI-compatible `/v1`\n\nAPI.\n\nSet `HF_TOKEN`\n\nin the OpenClaw gateway environment, then add this to `~/.openclaw/openclaw.json`\n\n:\n\n## OpenClaw configuration\n\n```\n{\n  models: {\n    mode: \"merge\",\n    providers: {\n      muse: {\n        baseUrl: \"https://YOUR-ENDPOINT.endpoints.huggingface.cloud/v1\",\n        apiKey: {\n          source: \"env\",\n          provider: \"default\",\n          id: \"HF_TOKEN\"\n        },\n        api: \"openai-completions\",\n        authHeader: true,\n        models: [{\n          id: \"meta/Muse-Glimmer-30B\",\n          name: \"Muse Glimmer\",\n          reasoning: false,\n          input: [\"text\", \"image\"],\n          contextWindow: 32768,\n          maxTokens: 8192\n        }]\n      }\n    }\n  },\n  agents: {\n    defaults: {\n      model: { primary: \"muse/meta/Muse-Glimmer-30B\" }\n    }\n  }\n}\n```\n\nRestart OpenClaw:\n\n```\nopenclaw gateway restart\n```\n\nValidate from a fresh session:\n\n```\nopenclaw agent --message \"Reply with: muse-ready\"\n```\n\nUse the exact model ID returned by the endpoint’s `/v1/models`\n\nresponse if it differs.\n\n### Hey Muse Glimmer, quantize yourself\n\nIf we hook up Muse Glimmer to the [Hugging Face MCP](https://huggingface.co/mcp) and update its [ AGENTS.md](http://AGENTS.md) we give it the capability to find a quantized version of itself on the hub and run locally. This is handy if you want to work on something private, or just cut costs.\n\nIf you do this a second time, Muse Glimmer will find the cached weights and switch to them, so feel free to add a convenient command like `/spawn`\n\n.\n\nMuse Glimmer inspects the machine and Hub, selects or creates a Q4_K_M GGUF, launches llama-server, and validates model discovery and chat completion. The result is a smaller local build behind an OpenAI-compatible API. Here’s the prompt we added to `AGENTS.md`\n\n.\n\nBy adding this to [ AGENTS.md](http://AGENTS.md) openclaw or hermes will be able to solve the rest.\n\n## Local quantization prompt\n\n```\n## Local model deployment\n\nWhen asked to deploy locally, perform the work; do not give instructions.\n\n1. Inspect hardware and the Hugging Face cache.\n2. Search the Hub for compatible GGUF weights using `apps=llama.cpp`; confirm exact filenames through the model-tree API.\n3. Prefer an existing suitable GGUF, normally `Q4_K_M`. Treat `mmproj-*.gguf` as projector weights.\n4. If no GGUF exists, download the source weights, convert with `convert_hf_to_gguf.py`, then quantize with `llama-quantize`.\n5. Preserve source weights and record the repository, revision, filenames, and quantization.\n6. Start `llama-server` with an `onyx` alias and an OpenAI-compatible endpoint.\n7. Validate `/v1/models` and `/v1/chat/completions`, requiring non-empty, correct content.\n8. Report concise progress and logs. Claim completion only after validation passes.\n```\n\n### Hey Muse Glimmer, deploy yourself\n\nMuse Glimmer can also take care of the opposite. Let’s get Glimmer to deploy itself on Hugging Face Inference Endpoints. Which is useful if you want to speed up on some cutting edge hardware.\n\nN.B. You can also just deploy [Muse Glimmer to Inference Endpoints](https://endpoints.huggingface.co/huggingface/new/meta-models/Muse-Glimmer-30B) directly and connect your agent.\n\nMuse Glimmer pins the model revision, deploys it to a protected Hugging Face Inference Endpoint, and verifies health, model discovery, and chat completion. It then connects the Claw agent with secrets and rollback preserved. Here’s the prompt we added to [ AGENTS.md](http://AGENTS.md). Muse glimmer will also need the\n\n[Hugging Face MCP](https://huggingface.co/mcp)and/or the\n\n[Hugging Face CLI and Skills](https://huggingface.co/docs/hub/en/agents-skills).\n\n## Inference Endpoint deployment prompt\n\n```\n## Hugging Face Inference Endpoint deployment\n\nWhen asked to deploy on Hugging Face Inference Endpoints, perform the work; do\nnot give instructions.\n\n1. Inspect Hugging Face authentication, the current model repository, and any\n   existing endpoints.\n2. Confirm the exact model repository and immutable revision through the Hub\n   API; inspect its architecture, configuration, and chat template.\n3. Confirm that the model is supported by vLLM, then deploy or update a\n   protected Inference Endpoint using the managed native vLLM engine.\n4. Choose an available region and the smallest suitable accelerator. Use one\n   replica and enable scale-to-zero when supported.\n5. Preserve the previous endpoint configuration for rollback. Do not expose\n   tokens, publish private weights, or replace an unrelated endpoint.\n6. Wait for the endpoint to become ready. If startup fails, inspect the logs\n   and report the actual blocker rather than repeatedly changing settings.\n7. Validate `/health`, `/v1/models`, and `/v1/chat/completions`, requiring the\n   expected model and non-empty, correct content. When agent use is required,\n   also validate a real structured tool call.\n8. Configure the Claw agent to use the endpoint's OpenAI-compatible `/v1` URL,\n   storing credentials as secrets and retaining the previous provider as\n   rollback. Test the connection in a fresh session.\n9. Report concise progress and finish with the repository, revision, engine,\n   hardware, endpoint URL, scaling state, and validation results. Claim\n   completion only after every required check passes.\n```\n\n### Hey Muse Glimmer, optimize yourself\n\nFinally, let’s get Muse Glimmer to do some light RSI. We can instruct our agent to optimize its own inference engine for specific hardware, in this case a Nvidia H100. To do this, the agent will need to use another inference engine, like Inference Endpoints above.\n\nMuse Glimmer benchmarks its own single-H100 serving stack, testing one reversible change at a time while holding the workload fixed. It keeps only correctness-passing gains and finishes with the fastest reproducible configuration. Here’s the prompt we added to [ AGENTS.md](http://AGENTS.md). Muse glimmer need the\n\n[Hugging Face MCP](https://huggingface.co/mcp)and the\n\n[Hugging Face CLI and Skills](https://huggingface.co/docs/hub/en/agents-skills).\n\n## Self-optimization prompt\n\n```\nYou are Muse Glimmer acting as an autonomous inference-optimization engineer for your own serving stack.\n\nGoal: maximize valid single-H100 aggregate completion throughput in tokens/second.\n\nProtocol:\n1. Establish a correctness-passing baseline.\n2. Test one reversible optimization at a time.\n3. Keep the prompt, concurrency, sampling, request count, warm-up, and decode length fixed.\n4. Reject results that fail correctness or prefix checks.\n5. Record every experiment chronologically with its configuration, raw throughput, correctness, and delta.\n6. Keep improvements and revert regressions.\n7. Stop after six consecutive regressions or when the experiment budget is exhausted.\n8. Report the best valid configuration and exact reproduction command.\n\nCreate a minimal scientific animation of the results:\n- white background;\n- raw tokens/second—never normalize;\n- one point revealed per experiment;\n- connect every point chronologically;\n- begin with the lowest valid result;\n- stop at the best result;\n- export as a GIF.\n\nNever fabricate, interpolate, or count correctness-failing measurements.\n```\n\n## Wrapping Up\n\nWe are happy to welcome Muse Glimmer in Hugging Face Hub. Try the models in [this collection](https://huggingface.co/collections/meta-models/muse-glimmer) with your local coding setups today!\n\n### Hey Muse Glimmer, research the Hub\n\nTry Muse Glimmer as a Hugging Face research agent. The Gradio Space sends each model request to a private Hugging Face Inference Endpoint through its OpenAI-compatible API. It also connects to the official Hugging Face MCP server, giving the agent read-only tools to search and inspect Hub repositories, models, datasets, Spaces, documentation, and papers.", "url": "https://wpnews.pro/news/meta-is-back-with-muse-glimmer-local-agentic-multimodal-and-open-source", "canonical_source": "https://huggingface.co/blog/muse-glimmer", "published_at": "2026-08-10 00:00:00+00:00", "updated_at": "2026-08-10 10:45:30.422906+00:00", "lang": "en", "topics": ["artificial-intelligence", "large-language-models"], "entities": ["Meta", "Muse Glimmer", "Hugging Face", "transformers", "llama.cpp", "vLLM", "Inference Endpoints"], "alternates": {"html": "https://wpnews.pro/news/meta-is-back-with-muse-glimmer-local-agentic-multimodal-and-open-source", "markdown": "https://wpnews.pro/news/meta-is-back-with-muse-glimmer-local-agentic-multimodal-and-open-source.md", "text": "https://wpnews.pro/news/meta-is-back-with-muse-glimmer-local-agentic-multimodal-and-open-source.txt", "jsonld": "https://wpnews.pro/news/meta-is-back-with-muse-glimmer-local-agentic-multimodal-and-open-source.jsonld"}}