MarkTechPost AI生成式AI

Meta Superintelligence Labs 發表 Muse Spark 1.1:專為代理任務設計的多模態推理模型,並推出 Meta Model API

2026年7月9日 22:26

重點摘要

今日,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)。核心功能與特色:由於是推理模型,它在回答前會先進行思考。此外,這個推理強度是可以調整的。

站內 AI 整理稿

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

相關文章

一夜之間,GPT-5.6 來了,Codex 沒了,Claude 急了

賬號設置我的關注我的收藏申請的報道退出登錄登錄搜索36氪Auto數字時氪未來消費智能湧現未來城市啟動Power on36氪出海36氪研究院潮生TIDE36氪企服點評36氪財經職場bonus36碳後浪研究所暗湧Waves硬氪氪睿研究院媒體品牌企業號企服點評36Kr研究院36Kr創新諮詢企業服務核心服務城市之窗政府服務創投發佈LP源計劃VClubVClub投資機構庫投資機構職位推介投資人認證投資人服務尋求報道36氪Pro創投氪堂企業入駐創業者服務創投平臺AI測評網 首頁快訊資訊推薦財經AI自助報道廣東最新創投汽車科技專精特新直播視頻專題活動搜索尋求報道我要入駐城市合作一夜之間,GPT-5.6 來了,Codex 沒了,Claude 急了愛範兒·2026年07月10日 08:04ChatGPT+Codex=ChatGPT Work 即便奧特曼癱坐在椅子前的故事已經聽過很多次,但每當 ChatGPT 發佈新模型時,我們還是會下意識抱有一絲期待。 沒有讓我們等待太久,就在剛剛,GPT-5.6 系列正式登場,一口氣發佈三個型號:旗艦 Sol、均衡款 Terra,還有主打性價比的 Luna,名字分別取自拉丁語裡的太陽、地球/大地和月亮。 價格上,Sol 每百萬 token 輸入 5 美元、輸出 30 美元;Terra 直接減半,2.5 美元和 15 美元;Luna 最便宜,只要 1 美元和 6 美元。 API 價格🔗https://developers.openai.com/api/docs/pricing 相比於 Fable 5 的一波三折,今天起,三款模型將全量上線,24 小時內陸續覆蓋 ChatGPT、Codex 和 API。 上壓力之後,Anthropic 都變懂事了,主動重置 Claude 額度 這還不是最大的更新,Codex 獨立 App 今天也下線了,但它沒有消失。Code

剛剛

小扎深夜亮王牌,Meta燒出白菜價模型,掀翻Grok 4.5

賬號設置我的關注我的收藏申請的報道退出登錄登錄搜索36氪Auto數字時氪未來消費智能湧現未來城市啟動Power on36氪出海36氪研究院潮生TIDE36氪企服點評36氪財經職場bonus36碳後浪研究所暗湧Waves硬氪氪睿研究院媒體品牌企業號企服點評36Kr研究院36Kr創新諮詢企業服務核心服務城市之窗政府服務創投發佈LP源計劃VClubVClub投資機構庫投資機構職位推介投資人認證投資人服務尋求報道36氪Pro創投氪堂企業入駐創業者服務創投平臺AI測評網 首頁快訊資訊推薦財經AI自助報道廣東最新創投汽車科技專精特新直播視頻專題活動搜索尋求報道我要入駐城市合作小扎深夜亮王牌,Meta燒出白菜價模型,掀翻Grok 4.5新智元·2026年07月10日 07:59小扎三年不發推,深夜連發三條,Muse Spark 1.1比Fable 5便宜10倍——Meta第一個收費模型,上來就打價格戰。 小扎憋了三年,終於忍不住了。 7月9日深夜,Mark Zuckerberg撣了撣他那個落灰三年的X賬號@finkd,連發三條推文,官宣Meta最新模型Muse Spark 1.1。 馬斯克還湊過來回了句「Jinx」。 評論區一句吐槽精準到位:老扎這是「founder mode」上身了。 Muse Spark 1.1,一齣手就在稅務、醫療、法律三大專業榜單拿下第一,把前一天剛登頂的Grok 4.5從法律榜上直接掀了下去。 更狠的是:這個能力水平的模型,定價只有Fable 5的十分之一。 小扎自己就一句話:「very low cost」。 先看看這張牌有多能打 Muse Spark 1.1是Meta超級智能實驗室的第二代多模態推理模型,4月的初代Muse Spark反響平平,Alexandr Wang自己都管它叫「開胃菜」。 三個月後,正菜上桌了。 它的核心定位就一個字:Agent。 具體來

剛剛

剛剛,GPT-5.6「太陽系」全家桶上線,Codex消失了

賬號設置我的關注我的收藏申請的報道退出登錄登錄搜索36氪Auto數字時氪未來消費智能湧現未來城市啟動Power on36氪出海36氪研究院潮生TIDE36氪企服點評36氪財經職場bonus36碳後浪研究所暗湧Waves硬氪氪睿研究院媒體品牌企業號企服點評36Kr研究院36Kr創新諮詢企業服務核心服務城市之窗政府服務創投發佈LP源計劃VClubVClub投資機構庫投資機構職位推介投資人認證投資人服務尋求報道36氪Pro創投氪堂企業入駐創業者服務創投平臺AI測評網 首頁快訊資訊推薦財經AI自助報道廣東最新創投汽車科技專精特新直播視頻專題活動搜索尋求報道我要入駐城市合作剛剛,GPT-5.6「太陽系」全家桶上線,Codex消失了新智元·2026年07月10日 07:53今後,只剩ChatGPT OpenAI終於把GPT-5.6「全家桶」交到所有人手裡。同時,ChatGPT和Codex徹底合併,全新AI打工神器ChatGPT Work殺瘋。 終於等到了! 就在剛剛,OpenAI一口氣把GPT-5.6「全家桶」——Sol、Terra、Luna全放了出來。 毫不誇張地說,Sol這次就是衝著Claude Fable 5來的: · Agents' Last Exam:Sol豪取53.6%,把Fable 5甩開13.1分; · Terminal-Bench 2.1:Sol拿88.8%,開Ultra頂到91.9%,Fable 5才83.1%; · Coding Agent Index:Sol狂攬80分刷新SOTA,力壓Fable 5 2.8分。 更刺激的的價格—— Fable 5每百萬token的輸入是$10、輸出是$50; Sol直接對摺,只要$5和$30,Terra再砍半到$2.5和$15,Luna乾脆只要$1和$6。 同在今天,ChatGPT和Codex終於完成合體,OpenAI「超級應用

剛剛
IT之家生成式AI

Anthropic Claude 測試上線 Reflect:四個維度回顧用戶使用 AI 習慣

Anthropic 推出 Claude 的測試版 Reflect 功能,讓用戶能回顧過去 1 到 12 個月的聊天活動,生成使用總結。該功能以任務委派、目標描述、結果辨別和責任審慎四個維度分析用戶行為,並提供協作範例與改進建議。Reflect 僅限開啟記憶功能的 Free、Pro 及 Max 用戶使用,且不會讀取無痕聊天或工具中的原始檔案。

剛剛

大廠紛紛選擇棄權,AI生成應用坑有點深

國內兩大AI助手豆包與千問近日同步宣布,將於近期正式下線智能體功能。業界普遍認為,此舉是為了符合將於7月15日施行的《人工智能擬人化互動服務管理暫行辦法》相關規範。然而,除了智能體功能因合規要求調整外,兩款產品中的AI應用生成功能也相繼關閉,背後反映出的並非單純法規壓力,而是這條賽道長期以來的結構性困境——成本高、用戶黏性低、實際效用不如預期。 字節跳動旗下的豆包與阿里系的千問,過去都將「一句話手搓應用」作為重要賣點。

3 小時前