muse-glimmer-30b
Meta logo

Muse Glimmer 30B

muse-glimmer-30b
Meta
Muse Glimmer 30B is a dense causal language model distilled from Muse Spark, designed for autonomous agent work. It combines multi-step reasoning, robust pattern-based tool invocation, and fault-recovery capabilities, and offers multimodal understanding via a ViT-G/14 perceptual encoder of roughly 1.8 billion parameters, supporting interleaved text and image inputs, a context window of over 131K tokens, and optional inference strength settings (from low to ultra-high). Muse Glimmer is trained on data in over 100 languages, performs strongly for its size on agent benchmarks including MCP Atlas, DeepSearch QA, Gaia2, and SWE-Bench Pro, and is released under the Apache 2.0 license.

Pricing

  • Input Tokens: $0.350 /M tokens
  • Output Tokens: $1.500 /M tokens
  • Cache Read: $0.040 /M tokens

Input Modalities

  • Text
  • Vision

Output Modalities

  • Text

Capabilities

  • Thinking
  • Tools

Try this model

Python
import os
from openai import OpenAI

client = OpenAI(
    api_key=os.environ["AIHUBMIX_API_KEY"],
    base_url="https://aihubmix.com/v1",
)

response = client.chat.completions.create(
    model="muse-glimmer-30b",
    messages=[
      {
        "role": "user",
        "content": "Hello, how are you?"
      }
    ],
    max_tokens=1024,
    stream=False,
)

print(response.choices[0].message.content)

Frequently asked questions

What is muse-glimmer-30b?

Muse Glimmer 30B is a dense causal language model distilled from Muse Spark, designed for autonomous agent work. It combines multi-step reasoning, robust pattern-based tool invocation, and fault-recovery capabilities, and offers multimodal understanding via a ViT-G/14 perceptual encoder of roughly 1.8 billion parameters, supporting interleaved text and image inputs, a context window of over 131K tokens, and optional inference strength settings (from low to ultra-high). Muse Glimmer is trained on data in over 100 languages, performs strongly for its size on agent benchmarks including MCP Atlas, DeepSearch QA, Gaia2, and SWE-Bench Pro, and is released under the Apache 2.0 license.