Muse Glimmer 30B API

Meta open 30B agentic model with image understanding, 128K context, tool calling, structured output, and controllable reasoning strength.

Meta AIText Generation128K contextReleased Aug 10, 2026Native InferenceNew

About Muse Glimmer 30B

Meta open 30B agentic model with image understanding, 128K context, tool calling, structured output, and controllable reasoning strength.

Also known as Meta AI Muse Glimmer 30B

reasoningvisionmultimodalfunction callingjson modecache

Muse Glimmer 30B specs

Model ID
muse-glimmer-30b
Provider
Meta AI
Category
Text Generation
Released
Aug 10, 2026
Context window
128K tokens
Max output
32,768 tokens
Input
TextImage
Output
Text
Structured output
JSON Schema
Endpoints
POST/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1/completionsPOST/v1beta/models/muse-glimmer-30b:generateContent
Alternate model IDs
meta/muse-glimmer-30bmuse-glimmermeta-models/muse-glimmer-30b

Muse Glimmer 30B API pricingSave up to 47%

Live pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.

Type
Spec
Rate
Input
per 1M prompt tokens
$0.35$0.20
Output
per 1M generated tokens
$1.50$0.80
Implicit cache read
per 1M cached input tokens
$0.05
Web Search (Linkup)
per call when invoked
$0.013
Compare on the full pricing page

How to call the Muse Glimmer 30B API

Muse Glimmer 30B serves the OpenAI-compatible Chat Completions API. Point any OpenAI SDK at https://api.empiriolabs.ai/v1 with your EmpirioLabs API key and use the model id muse-glimmer-30b. Get an API key from the EmpirioLabs dashboard.

cURL
curl https://api.empiriolabs.ai/v1/chat/completions \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "muse-glimmer-30b",
    "messages": [
      {"role": "user", "content": "Write a haiku about the ocean."}
    ]
  }'
Python (OpenAI SDK)
from openai import OpenAI

client = OpenAI(
    base_url="https://api.empiriolabs.ai/v1",
    api_key="YOUR_EMPIRIOLABS_API_KEY",
)

response = client.chat.completions.create(
    model="muse-glimmer-30b",
    messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)
Full Muse Glimmer 30B API reference

Muse Glimmer 30B API parameters

Request parameters supported by the Muse Glimmer 30B API on EmpirioLabs. Defaults apply when a field is omitted.

ParameterTypeDefaultRange / valuesDescription
temperaturenumber10 to 2Sampling temperature. 0 is deterministic and 2 is maximum randomness.
top_pnumber0.950 to 1Nucleus sampling probability mass. Lower values make outputs more focused.
max_tokensnumber40961 to 32768Maximum output tokens.
stopstring--Up to 4 strings where the model will stop generating further tokens.
reasoning_effortenumhighnone, low, medium, high, maxReasoning strength level. Higher levels think longer before answering. none requests minimal thinking and max maps to the model's xhigh strength.
top_knumber641 to 200Limit sampling to the top K candidate tokens when supported.
min_pnumber00 to 1Minimum probability threshold for token sampling.
frequency_penaltynumber0-2 to 2Penalty based on how often a token has already appeared.
presence_penaltynumber0-2 to 2Penalty for tokens that already appeared in the generated text.
response_formatenum-text, json_object, json_schemaConstrain the output to valid JSON. Use JSON mode for any JSON object, or supply a JSON Schema to force an exact response shape.
web_search_linkupbooleanfalse-Optional web search powered by Linkup. When enabled, recent web sources are retrieved using your latest user message as the query and provided to the model as additional context. Adds $0.013 per call when invoked on top of the model's normal token cost. Disabled by default.
disable_formattingbooleanfalse-When enabled, the gateway will not append the "Sources" footer to assistant responses that used Linkup web search. Useful when the model output is piped to another...

Good to know

Supports text and image input, streaming, function tools, structured JSON output, and reasoning strength control through reasoning_effort (none, low, medium, high, max). Reasoning defaults to high.

Muse Glimmer 30B API: common questions

How much does the Muse Glimmer 30B API cost?

On EmpirioLabs, Muse Glimmer 30B is billed pay as you go. The live rate card on this page always matches what the API charges.

What is the context window of Muse Glimmer 30B?

Muse Glimmer 30B supports a 128K-token context window with up to 32,768 output tokens per response.

Is the Muse Glimmer 30B API OpenAI-compatible?

Yes. Muse Glimmer 30B serves the OpenAI-compatible Chat Completions API, so existing OpenAI SDKs work by pointing base_url at https://api.empiriolabs.ai/v1 and setting the model id to muse-glimmer-30b.

Can I try Muse Glimmer 30B in the browser before integrating?

Yes. The EmpirioLabs playground runs Muse Glimmer 30B in the browser with the same parameters the API exposes, so you can test prompts before writing code.

How do I get a Muse Glimmer 30B API key?

Create an EmpirioLabs account, then generate a key under API Keys in the dashboard. Billing is pay-as-you-go credits, so you only pay for the requests you make.

Ready to use better endpoints?

Check out our pricing or reach out if you want your own model deployed on our stack.