Meta Muse Spark 1.3 and Muse Code: Pricing, Agent Efficiency, API and Upgrade Guide


Meta released Muse Spark 1.3 on September 2, 2026, making the model available through Muse Code and Meta Model API. The release targets long-horizon coding and agentic workloads, with improvements in instruction retention, multi-workflow handling, tool selection and user collaboration. Meta says its engineers measured approximately 20% fewer tool calls and 25% fewer tokens than Muse Spark 1.2 on comparable tasks.

For existing Meta Model API users, the migration is designed to be small: Meta says developers can change the model ID while keeping the same endpoints, SDKs and pricing. The standard endpoint remains listed at $1.25 per million input tokens and $4.25 per million output tokens, while the lower-cost Contributor route retains separate data-use terms.

Muse Spark 1.3 is a material upgrade to the Muse stack and becomes the current model for new Muse deployments. The strongest practical changes are lower agent overhead, better handling of long multi-step work, more deliberate confirmation around consequential actions and improved coding behavior inside Muse Code and other compatible agent harnesses.

Muse Spark 1.3 at a glance

Item Muse Spark 1.3
Release date September 2, 2026
Primary use Coding, tool use and long-horizon agentic workflows
Availability Muse Code and Meta Model API
Standard model ID muse-spark-1.3
Contributor model ID muse-spark-1.3-contributor
Context window 1,048,576 tokens
Standard input price $1.25 / 1M tokens
Standard output price $4.25 / 1M tokens
Standard cached input $0.15 / 1M tokens
Contributor input $0.10 / 1M tokens
Contributor output $0.20 / 1M tokens
Launch reasoning modes Existing Muse reasoning modes
Max reasoning Planned after additional safety testing
Muse Code platforms macOS and Linux

Meta's launch material identifies max reasoning as a later rollout after additional safety testing. Production evaluations should therefore record the reasoning mode used, since reasoning budget can materially change quality, latency and token consumption.

What changed from Muse Spark 1.2

Muse Spark 1.3 concentrates on agent execution quality across longer tasks. Meta describes five operational improvements.

Fewer tool calls and tokens

Meta engineers measured about 20% fewer tool calls and 25% fewer tokens relative to Muse Spark 1.2 while completing comparable work. These are Meta's internal engineering measurements, so they should be treated as vendor-reported efficiency results.

The impact is straightforward for agent systems. A workflow that reaches the same outcome with fewer searches, file reads, shell calls or browser actions reduces orchestration latency and creates fewer failure points. Lower token usage can also reduce API cost when the model is billed at the same token rates as its predecessor.

Production billing should be modeled from actual input size, cached context, reasoning effort, output length and external tool charges. The vendor-reported 25% token reduction is best treated as an efficiency target to verify on representative workloads.

Better long-horizon instruction retention

Meta says 1.3 follows complex long-form instructions more reliably across multi-step tasks. The model is trained to preserve requirements over longer sessions and to recover gaps in its plan as it gathers new context.

This is particularly relevant to coding work that spans repository inspection, implementation, tests, documentation and final verification. It is also useful for research or document workflows where several output requirements must survive a long sequence of intermediate steps.

Stronger multi-workflow handling

Muse Spark 1.3 is designed to keep multiple workstreams inside a single long thread and map new prompts back to the appropriate task. That matters for agents that receive interruptions, steering requests or additional requirements while another task remains active.

The improvement is architectural from an operator's perspective: a long-lived agent can retain more state inside one session instead of forcing every task into an isolated conversation.

More active collaboration

Meta trained the model to ask clarifying questions when instructions are ambiguous, request user help when blocked and confirm before consequential actions. In an interactive coding session, this can reduce destructive edits or unproductive execution when repository state or requirements are incomplete.

For autonomous pipelines, the same behavior needs explicit harness policy. Agents should have clear rules for which actions can proceed automatically and which operations require an approval boundary.

Cleaner coding behavior

Meta says Muse Spark 1.3 was trained on more long-horizon coding tasks, takes fewer unnecessary turns and produces cleaner code than 1.2. These improvements are most useful when evaluated as completed engineering outcomes: passing tests, correct diffs, reduced retries and lower cleanup work.

Muse Spark 1.3 pricing

Meta kept the standard Muse Spark pricing structure used by 1.2.

Pricing route Cached input / 1M Input / 1M Output / 1M Data-use consideration
Standard muse-spark-1.3 $0.15 $1.25 $4.25 Standard commercial API terms
Contributor muse-spark-1.3-contributor $0.002 $0.10 $0.20 Prompts/completions may be used to improve Meta models

The Contributor price is substantially lower, with a materially different data-use arrangement. Teams handling proprietary source code, customer data, credentials, regulated information or unreleased product material should select the route only after its data terms fit their policy.

For most organizations, Standard should be the baseline cost used in model comparisons. Contributor pricing represents a distinct opt-in deployment choice with separate data terms.

What the 20%/25% efficiency claim can mean for cost

Assume an existing Muse Spark 1.2 agent run consumes 10 million billable input tokens and 2 million output tokens, with no caching for simplicity.

At the current Standard list rates:

  • input: 10M × $1.25 = $12.50
  • output: 2M × $4.25 = $8.50
  • total model-token cost = $21.00

If a representative 1.3 run really uses 25% fewer billable tokens with the same input/output mix, the equivalent token cost would be about $15.75. Real production savings can be smaller or larger because agent behavior changes the ratio of prompt, cached context, reasoning and generated output.

The useful production metric is therefore cost per completed task, measured alongside retries, tool calls and success rate.

API migration from Muse Spark 1.2

Meta says existing developers can keep the same API surface and change the model ID. A migration should still be treated as a model change and tested against representative workflows.

A minimal model switch looks conceptually like this:

muse-spark-1.2  ->  muse-spark-1.3

For Contributor deployments:

muse-spark-1.2-contributor  ->  muse-spark-1.3-contributor

Before changing a production default, run the same workload on both versions with identical tools, permissions, instructions and reasoning effort. Record:

  • task completion rate;
  • test pass rate for coding work;
  • input, output and cached tokens;
  • tool-call count;
  • elapsed time;
  • retries or recovery loops;
  • human cleanup required after completion.

This matched evaluation is more informative than comparing unrelated public benchmark scores.

Muse Code with Muse Spark 1.3

Muse Code remains Meta's terminal coding agent and is one of the first-party deployment surfaces for 1.3. Meta currently provides an installation path for macOS and Linux:

curl -fsSL https://dev.meta.ai/install.sh | bash

Muse Code supplies the execution harness around the model: repository context, file operations, shell/tool access and longer-running coding workflows. The model determines reasoning and tool-selection behavior; the harness determines which capabilities are exposed and what actions are permitted.

Teams evaluating Muse Code should measure the complete model-plus-agent system, since coding-agent quality depends on both the underlying model and its execution environment.

1M context: capacity and operating implications

Muse Spark 1.3 continues the approximately 1,048,576-token context window associated with the Muse Spark line. That capacity is useful for large repositories, long technical documents, tool traces and persistent agent sessions.

Large context should still be managed deliberately. Feeding every available file into each request raises input cost and can dilute the most relevant evidence. Retrieval, repository maps, targeted file reads and cache reuse remain useful even with a million-token window.

For software engineering, a practical hierarchy is:

  1. repository map and task requirements;
  2. directly relevant implementation files;
  3. interfaces, callers and tests;
  4. build or runtime evidence;
  5. additional repository context only when the task requires it.

This keeps long context available as capacity while limiting unnecessary prompt growth.

Safety changes relevant to agents

Meta says Muse Spark 1.3 improves adversarial robustness, including resistance to adversarial inputs and prompt injection. The company also says the model has better calibration around irreversible actions and is trained to seek confirmation for consequential operations.

These model-level improvements complement normal agent controls. Production coding and operations agents should still use scoped credentials, repository permissions, command allowlists where appropriate, isolated execution environments, review gates for high-impact actions and auditable tool logs.

Meta is holding the new max-reasoning mode for additional safety testing. Existing reasoning modes are available with the September 2 rollout.

Benchmarks: use matched configurations

Muse Spark 1.3 launched with Meta evaluation material covering coding, agentic behavior, instruction following and long-context tasks. Several early third-party evaluations also place the model among high-performing coding and agentic systems.

The most important comparison control is reasoning effort. Label max-reasoning results separately from currently deployed lower-effort configurations. Agent benchmarks can also move substantially with changes in harness, retry policy, tools, time limits and repository environment.

For purchase or migration decisions, prioritize three evidence layers:

Evidence Best use
Meta launch evaluations Understand the capabilities Meta optimized for
Independent common-harness tests Compare model behavior under shared methodology
Your own repository/task benchmark Decide whether the upgrade improves production outcomes

Should existing Muse Spark 1.2 users upgrade?

New agent and coding deployments should evaluate Muse Spark 1.3 first. Meta is positioning 1.3 as the current model for Muse Code and Meta Model API, while keeping pricing compatible with the previous release.

A strong upgrade case exists when workloads are dominated by long coding sessions, repeated tool use, multi-step instruction sets or agent loops where token and tool-call overhead materially affect cost and latency.

Teams with stable 1.2 production workloads should run a matched regression set before switching the default model. Pay particular attention to tool schemas, structured outputs, deterministic tests, latency ceilings and any workflow that relies on exact response behavior.

Bottom line

Muse Spark 1.3 is a substantive agent-focused update. Meta's most decision-relevant claims are approximately 20% fewer tool calls and 25% fewer tokens than 1.2 in internal comparisons, combined with better long-task instruction retention, multi-workflow handling and action confirmation. The model is available through Muse Code and Meta Model API at the existing Muse Spark pricing structure.

For developers already using 1.2, the migration surface is small enough to test quickly. The correct production decision should come from a matched task benchmark measuring completion quality, token consumption, tool calls, latency and cleanup effort. If 1.3 reproduces Meta's efficiency gains on a team's real workloads, it can reduce agent operating cost within the existing API architecture.

Sources