Muse Spark 1.3: Meta Advances Collaborative Agentic Reasoning and Long-Horizon Coding

Meta releases Muse Spark 1.3, an agentic foundation model optimizing long-horizon multitasking, self-correcting workflows, and coding efficiency with 20% fewer tool calls and 25% fewer tokens.

MV
Meta AI ResearchVerified Lab
3 min read·Sep 3, 2026·Original Source
Muse Spark 1.3: Meta Advances Collaborative Agentic Reasoning and Long-Horizon Coding
Figure 1: Official research and architecture release visual · Meta AI Research

Muse Spark 1.3: Meta Advances Collaborative Agentic Reasoning and Long-Horizon Coding

On August 28, 2026, Meta AI Research released Muse Spark 1.3, introducing a foundation model optimized for collaborative agentic reasoning, long-horizon software engineering, and real-time multi-agent coordination.

Operating across a Mixture-of-Experts backbone, Muse Spark 1.3 excels at decomposing ambiguous high-level engineering prompts into executable multi-step plans with integrated self-debugging and unit test generation.

···

Key Breakthroughs

1. Collaborative Agentic Protocols

  • Dynamic Team Orchestration: Can spawn, supervise, and aggregate specialized sub-agent outputs across complex coding repositories.
  • Persistent Shared State: Maintains synchronization across long planning horizons without context fragmentation.
···

2. Verified Tool Dispatch & Execution

  • Zero-Shot Sandbox Execution: Interacts natively with shell terminals, Git version control, and containerized debuggers.
  • High-Accuracy Code Generation: Matches frontier models across SWE-bench and TerminalBench evaluations.
···

Technical Specifications & Benchmark Overview

Metric / DimensionSpecification
Developing LabMeta AI Research
Release DateAugust 28, 2026
Context Window256,000 tokens
LicensingMeta Open Innovation License
Key BenchmarksSWE-bench Verified: 88.5% | TerminalBench: 82.1%
···

Verified Integration & API Usage

python
import os
import requests

api_key = os.environ.get("META_API_KEY")
url = "https://api.meta.ai/v1/chat/completions"

headers = {"Authorization": f"Bearer {api_key}"}
payload = {
    "model": "muse-spark-1.3",
    "messages": [{"role": "user", "content": "Refactor this distributed cache implementation."}]
}

response = requests.post(url, headers=headers, json=payload)
print(response.json())
Referenced Foundation Models

This technical digest directly references verified architecture specifications documented in TheModelverse Foundation Model Catalog.

MetaVideoProprietary Commercial API

Muse Spark 1.2

Params: ProprietaryContext: 1049k tokens
View Full Specs & Benchmarks
MetaCodeProprietary Commercial API

Muse Spark 1.1

Params: ProprietaryContext: 1000k tokens
View Full Specs & Benchmarks
Advertisement