GitHub - meta-models/meta-oss-cookbook: All recipes for oss models from Meta Inc.
Summary
A GitHub repository provides practical recipes to deploy and use Meta's Muse Glimmer, an open-weight 30B AI model designed for local agentic tasks on a single GPU.
View Cached Full Text
Cached at: 08/15/26, 07:48 AM
meta-models/meta-oss-cookbook
Source: https://github.com/meta-models/meta-oss-cookbook
Muse Glimmer Cookbook
Clone it, run it on the GPU you already own, and ship a working agent — one that plans, calls tools, and self-corrects — in a single sitting, fully offline.
Muse Glimmer is an open-weight model built for local agentic work on a single GPU. This cookbook is how you go from weights to a running agent.
What you build here
We built Muse Glimmer keeping 2 principles in mind:
- Local-first: Inference runs on your own hardware, so nothing leaves your machine. No API keys, no gated access, no hosted dependency — everything works fully offline.
- Agentic-first: Designed for the full tool-use loop — the model plans, calls a tool, feeds the result back, and self-corrects, taking multiple steps autonomously until it reaches the goal.
What you’ll have by the end
A local agent running on your own machine that completes a real multi-step task, offline, in a single sitting, starting from a fresh install.
Pick your path
| You want to | Go to |
|---|---|
| Run the model with a single command | quickstart/ |
| Learn the tool-use loop (chat template, function calling, the agent loop) | agentic-fundamentals/ |
| Ship a flagship agent (structured output, reasoning control, a triage pipeline) | recipes/ |
| Serve Muse Glimmer (vLLM, Ollama, LM Studio, SGLang, llama.cpp, Unsloth, ExecuTorch) | inference-server/ |
| Deploy on specific partner hardware, and see which precisions it supports | platform/ |
| Call a hosted API instead of running the model yourself (needs a provider API key) | hosted/ |
How every recipe is built
Each recipe follows the same contract so you always know what you’re getting:
- Runs end to end, offline: Any network use is optional and flagged.
- Recipe banner up top: Precision, model server, and the max VRAM we observed, before you run anything. We don’t publish numbers for hardware we haven’t run on — where a recipe hasn’t been measured, its banner says so instead of estimating.
- Precision and server vary by recipe: Most are bf16 on vLLM;
recipes/computer-use-web/is a quantized GGUF on llama.cpp. Other combinations generally work; we just don’t re-verify every recipe against each one. - Copy-paste first: One command to run. The explanation comes after.
- Ends with “make it yours”: The extension hook, plus troubleshooting.
About the model
| Family | Llama-derived dense decoder (Gemma2-style text stack with Muse Glimmer deltas). |
| Size | 30B dense decoder. |
| Suggested GPU | Fits a single 24–32 GB GPU when quantized (Q4/INT4, ~16–17 GB); bf16 needs ~60 GB (an 80 GB card, or sharded across several GPUs). |
| Context | 131072 tokens (128K). |
| Modalities | Text and image in, text out, plus tool calling — all supported today, through a dedicated ~1.8B perception encoder. Server support for image input varies; each inference-server/ page states where it stands. Video is not a supported input: the model card processes it as individual frames and is not explicitly optimized for it. |
| Tool format | An XML-ish <atem:function_calls> block. See agentic-fundamentals/. |
| Chat framing | Channel-scoped <|start|>role<|message|>…<|eot|> with a to=self reasoning channel. |
| License | See the model card on HuggingFace. |
Status
This cookbook is under active construction. Sections land incrementally, and each folder’s README states where it stands.
Contributions welcome. Every recipe follows the shared template in assets/RECIPE_TEMPLATE.md.
License
Please refer to the License
Similar Articles
@akshay_pachaar: Meta released Muse Glimmer 30B, an open agentic model built for planning, tool use, and vision! We'll fine-tune it to m…
Meta has released Muse Glimmer 30B, an open agentic model built for planning, tool use, and vision, with plans to fine-tune it for chess-related tasks.
Meta is back with Muse Glimmer: local, agentic, multimodal, and open source
Meta released Muse Glimmer, a 30B multimodal agentic model under Apache 2.0, designed for local deployment with day-0 support across Hugging Face libraries.
Meta Muse Glimmer – open weights 30B local coding model
Meta introduces Muse Glimmer, a permissively licensed 30B-parameter model optimized for local agent workflows, coding, and tool use, with weights released on Hugging Face.
Meta Open-Sources Muse Glimmer 30B Agent Model as Zuckerberg Pushes Personal-Superintelligence Vision
Meta open-sourced Muse Glimmer, a 30B-parameter multimodal agentic model under Apache 2.0, optimized for local tool use and coding with 4-bit quantization fitting under 20GB for consumer GPUs. Zuckerberg also promised open-weight Muse Spark 1.2 and a $1B community fund for data-center regions.
@PyTorch: Today @AIatMeta introduced Muse Glimmer, an open-weight, 30-billion-parameter model distilled from Meta’s Muse Spark fo…
Meta introduced Muse Glimmer, an open-weight 30B-parameter model distilled from Muse Spark for on-device agentic workflows, with ExecuTorch now supporting running it on NVIDIA GPUs and Apple silicon.