Meta Superintelligence Labs 發表 Muse Spark 1.1:專為代理任務設計的多模態推理模型,並推出 Meta Model API
重點摘要
今日,Meta Superintelligence Labs 正式發表 Muse Spark 1.1。與此同時,Meta 也開放了 Meta Model API 的公開預覽版。後者是結構性的重大變化。過去 Meta 的模型主要以開放權重形式提供給開發者,而 Muse Spark 1.1 則是封閉、託管、並按 token 計費。因此問題變得明確:在你已經運行的技術堆疊中,它該歸屬於哪個位置?什麼是 Muse Spark 1.1?Meta 將其描述為專為代理任務打造的多模態推理模型。根據報告,相較於第一代 Muse Spark,它在工具使用、電腦操作、程式編寫以及多模態理解方面均有顯著提升。其上下文視窗長度為 1,000,000 個 token(Meta Model API 文件則列出 1,048,576)。核心功能與特色:由於是推理模型,它在回答前會先進行思考。此外,這個推理強度是可以調整的。
Today, Meta Superintelligence Labs released Muse Spark 1.1.Alongside it, Meta opened a public preview of the Meta Model API.That second part is the structural change.Meta’s models previously reached developers mainly as open weights.Muse Spark 1.1 is closed, hosted, and metered per token.
So the question is narrow.Where does it belong in a stack you already run?What is Muse Spark 1.1?Meta describes it as a multimodal reasoning model built for agentic tasks.Reported gains over the first Muse Spark sit in tool use, computer use, coding, and multimodal understanding.
The context window is 1,000,000 tokens.Meta Model API docs list 1,048,576.Core Capabilities and Features Because it is a reasoning model, so it thinks before answering.Furthermore, this reasoning effort is adjustable per request.Inputs span text, images, video, and documents; output is text.
The API also exposes structured output, parallel tool calling, a Files API, and prompt caching.Adding a web_search tool to a Responses API call returns cited answers.Pricing and Regional Availability Access splits two ways.Consumers get it free in ‘Thinking’ mode in the Meta AI app and on meta.ai.
Developers pay $1.25 per million input tokens and $4.25 per million output tokens.New accounts get $20 in free credits.Initial launch post describes the public preview as US-only, with no EU access yet.Performance With the spec in place, the numbers explain the positioning.
To illustrate this, Meta published a launch table, and the table splits cleanly.BenchmarkTestsMuse Spark 1.1Opus 4.8 (max)GPT-5.5 (xhigh)Gemini 3.1 Pro (high)MCP AtlasScaled tool use88.182.275.378.2JobBenchProfessional tool use54.748.438.315.9Humanity’s Last ExamReasoning with tools62.157.952.251.
4OSWorld-VerifiedComputer use80.883.478.776.2SWE-Bench ProReal-repo coding61.569.258.654.2DeepSWE 1.1Long-horizon coding53.359.067.012.0BabyVisionVisual reasoning76.381.283.651.5 Benchmark Analysis Meta-reported, with rivals shown in their strongest modes.Muse Spark 1.
1 leads the tool-use and tool-augmented reasoning rows.It places third on coding and multimodal.Consequently, this is an orchestration model, not a coding-accuracy leader.Meta also chose the benchmark set and ran the harness.
The Feature Worth Taking Seriously: Compaction and Delegation Beyond the scores, orchestration behavior explains the tool-use results.The model actively manages its million-token context window.It remembers actions, retrieves information from much earlier work, and compacts what it keeps.
Delegation is the second half.As a main agent, it gathers context, plans, and delegates execution across parallel subagents.As a subagent, it adheres to its job, understands available tools, and escalates back when needed.
The research team also reports zero-shot generalization to new native tools, MCP servers, and custom skills.Computer use follows the same logic.The model was trained to write scripts when automation is faster.It clicks when direct interaction is simpler.It generates batches of actions at each step.
Wiring It Into an Existing Stack Because the Model API is OpenAI-compatible, migration is a base-URL change rather than a rewrite.The snippet below is Meta’s own first-call recipe.
Copy CodeCopiedUse a different Browser# pip install openai import os from openai import OpenAI # The OpenAI SDK does not auto-read MODEL_API_KEY, so pass it explicitly.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) Anthropic-format harnesses, such as Claude Code, point at the Messages API instead.
Agent CLIs like OpenCode register a provider using three values: base URL, key, model ID.Use Cases In practice, the shipped demos map onto workloads engineering teams already recognize.
For instance: Multimodal listing automation: In the Facebook Marketplace demo, the model takes smartphone video, extracts useful photos, reasons about the product, then operates a browser to publish the listing.
Screenshot-driven debugging: In an OpenCode demo, it builds a chat web app, takes automated screenshots, traces failures back to code, then validates fixes.Adaptive planning: In the dinner-party demo, new context arrives mid-order, and the model updates the plan unprompted.
Coding harnesses get first-class support: planning mode, goal conditioning, subagent delegation, context compaction.Meta team also reports a significant gain on Meta Internal Coding Bench.(function(){ window.addEventListener('message', function(e){ var d = e.data; if(!d || d.type !
== 'mtp-muse-spark-resize') return; var f = document.getElementById('mtp-muse-spark-frame'); if(f && d.height && d.height > 200){ f.style.height = d.height + 'px'; } }, false); })(); Strengths and Weaknesses Taken together, the trade is legible.
Strengths Leads Meta’s reported tool-use and tool-augmented reasoning evaluations Million-token context, compacted by the model across long sessions Zero-shot generalization to unfamiliar tools, MCP servers, custom skills OpenAI and Anthropic SDK compatibility makes an A/B test cheap Weaknesses Third on SWE-Bench Pro, DeepSWE 1.
1, and BabyVision in Meta’s table Closed weights, so no local deployment and no fine-tuning Every launch figure is vendor-reported, rivals shown at maximum settings Public preview reported as US-only; preview pricing can change Key Takeaways Tops Meta’s reported tool-use evals; trails Opus 4.
8 and GPT-5.5 on coding.The 1M-token window is actively compacted by the model itself.Pricing: $1.25 in / $4.25 out per million tokens, plus $20 free credits.Drop-in for OpenAI and Anthropic SDKs; preview is US-only.Meta’s first paid API for its own frontier model.Check out the Technical details.
Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter.Wait!are you on telegram?now you can join us on telegram as well.Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.?
Connect with us The post Meta Superintelligence Labs Releases Muse Spark 1.1: A Multimodal Reasoning Model for Agentic Tasks on Meta Model API appeared first on MarkTechPost.
Related
相關文章

曝字節訓10億參數大模型,或超Mythos 5,張一鳴、梁汝波先後發聲
字節跳動正在訓練一個參數量高達10萬億的AI模型,規模可能超越Anthropic的Mythos 5。創辦人張一鳴在內部會議中強調編程的關鍵地位,並反對模型蒸餾,認為這只能複製而非超越對手。字節跳動在AI領域持續加大投入,同時在產品端與訓練端採取雙線進攻策略。

AI 需求擠爆雲計算,消息稱 AWS 要求工程師關閉閒置服務器減少資源浪費
因AI需求導致算力緊缺,亞馬遜AWS要求工程師關閉閒置的EC2實例,以減少資源浪費。數據顯示約65%的EC2實例在30天內平均CPU利用率低於20%,AWS因此升級計算優化器自動標記低使用率虛擬機。此外,AWS過去一年新增3.8吉瓦電力容量,仍難以應對GPU雲端實例的龐大需求。

六巨頭定AI插件新標準,撞臉Claude,Anthropic沒上桌
六大科技巨頭(AWS、Anysphere、GitHub、微軟、OpenAI、Vercel)聯合發布AI智能體插件統一開放規範Agent Plugins 1.0.0,旨在統一插件打包格式,減少開發者重複勞動。該規範的結構與Anthropic的Claude Code插件系統高度相似,但Anthropic並未參與制定,而是繼續經營自己的封閉生態。

DeepSeek重啟融資,三年市值對齊騰訊?
DeepSeek重啟第二輪融資,以5000億元人民幣估值尋求籌集80億美元,但網傳一份由小型醫藥私募發起的專項基金募資材料引發網友質疑,後經DeepSeek員工證實部分數據屬實。該公司近期宣布API大幅漲價,可能打破其以低價換規模的估值邏輯,面臨客戶流失風險。市場關注其能否從「價格屠夫」轉型為價值提供商,以及三年內市值能否對齊騰訊等巨頭。

可靈AI核心技術骨幹王鑫濤被曝離職
快手可靈AI核心技術骨幹王鑫濤被曝離職,去向未知,快手官方與本人均未回應。王鑫濤是圖像與視頻生成領域知名開源項目主要作者,被視為可靈從0到1的關鍵推手。其離職發生在可靈完成獨立融資、估值180億美元的關鍵階段,可能影響研發進度與競爭優勢。

AI短劇、漫劇、戀綜、電影、藝人都有了,AI觀眾也不遠了
2026年AI影視內容全面爆發,從短劇、長劇到電影、綜藝,AI製作的作品大量湧現,衛視也開始播出AI短劇。AI演員如方桃子迅速走紅,商業變現能力驚人,廣告報價甚至超過許多真人網紅。AI短劇市場規模已突破220億元,用戶超過6億,但同時也引發了對真人演員就業和內容品質的擔憂。