## Meta Spark 1.1 Explorer: A Hands‑On Look at the New Model and How It Fits Your Stack
Meta has launched **Muse Spark 1.1**, positioning it as a multimodal reasoning model built for agentic workflows. Alongside the model, Meta opened a public preview of the **Meta Model API**, which introduces a structural shift: unlike earlier releases that shipped primarily as open weights, Muse Spark 1.1 is now **closed, hosted, and metered per token**. This change makes integration decisions more straightforward—developers connect to an API rather than managing infrastructure.
### What Muse Spark 1.1 Brings
Muse Spark 1.1 is described as a reasoning-first model that handles multimodal inputs (text, images, video, documents) and produces text outputs. Key capabilities include:
– **Adjustable reasoning effort** per request, with a configurable 1,000,000‑token context window
– **Structured output**, parallel tool calling, file management, and prompt caching
– **Web search integration** that returns cited answers when a `web_search` tool is added
Performance highlights from Meta’s launch table show Muse Spark 1.1 leading in tool‑use and tool‑augmented reasoning benchmarks such as MCP Atlas, JobBench, and Humanity’s Last Exam, while placing competitively in coding and multimodal tasks.
### Why the Feature That Really Matters Is Compaction and Delegation
Perhaps the most distinctive aspect of Muse Spark 1.1 is its orchestration behavior. The model actively manages its large context window by:
– Remembering earlier actions
– Retrieving relevant information across long workflows
– Compacting and storing what it needs to continue
It also supports **delegation across parallel sub‑agents**, whether acting as a lead agent that coordinates a plan or as a specialist that executes a focused task and escalates when necessary. According to Meta, the model generalizes zero‑shot to new native tools, MCP servers, and custom skills.
The same orchestration principles apply to computer‑use scenarios, where the model prefers automation via scripts but will click directly when that is simpler, often batching actions at each step.
### Integrating Muse Spark 1.1 Into Your Existing Stack
Because the Meta Model API follows the **OpenAI‑compatible format**, adoption is relatively simple. The primary change is pointing your client at the new base URL and supplying an API key. A basic example in Python looks like this:
“`python
# pip install openai
import os
from openai import OpenAI
client = OpenAI(
base_url=”https://api.meta.ai/v1″,
api_key=os.environ[“MODEL_API_KEY”],
)
response = client.chat.completions.create(
model=”muse-spark-1.1″,
messages=[{“role”: “user”, “content”: “Hello, world!”}],
)
print(response.choices[0].message.content)
“`
For teams using Anthropic‑format harnesses (e.g., Claude Code) or agent CLIs like OpenCode, the model can be registered as a provider with three values: base URL, key, and model ID.
### Practical Use Cases
In practice, the shipped demos align with common engineering workflows, including:
– **Multimodal listing automation**, where video is turned into photos, products are reasoned about, and browsers are driven to publish listings
– **Screenshot‑driven debugging**, where an app is built, tested visually, failures are traced back to source, and fixes are validated
– **Adaptive planning**, where new context arriving mid‑task triggers an automatic plan update
Coding harnesses benefit from planning mode, goal conditioning, sub‑agent delegation, and context compaction, supported by reported gains on Meta’s internal coding benchmark.
### Pricing and Availability
The public preview follows a straightforward pricing model:
– **Free** for consumers in “Thinking” mode via the Meta AI app and meta.ai
– **For developers**: $1.25 per million input tokens and $4.25 per million output tokens
– New accounts receive $20 in free credits
– The preview is initially **US‑only**, with no EU access yet
### Should You Route Work to Muse Spark 1.1?
If your workload involves heavy tool orchestration, long‑running agent loops, or multimodal reasoning, Muse Spark 1.1 is worth evaluating. Its strengths align with scenarios where token efficiency and the ability to manage large context windows matter more than pure coding accuracy. Because the API is OpenAI‑compatible, testing it side‑by‑side with your current provider is low‑effort and can be guided by simple cost simulations.
**Original article:** Meta Superintelligence Labs, “Muse Spark 1.1 Explorer,” July 9, 2026. [https://example.com/muse-spark-1-1-explorer](https://example.com/muse-spark-1-1-explorer)



