Perplexity发布Mac混合计算:云端Agent调度本地模型
Perplexity Releases Hybrid Compute on Mac: Cloud Agents Orchestrate Down to a Local Model, Gated On Device
Agent架构的新范式探索,云端统筹与本地隐私计算的结合方案对开发者极具参考价值,且附带开源的PII检测模型细节。
Agentic assistants have a structural problem: the context that makes them useful — deal documents, privileged files, client records — is exactly the context users cannot send to a cloud endpoint. This week, Perplexity shipped its answer for Mac. Hybrid compute splits a single Perplexity Computer task between frontier models in the cloud and a compact model on the user’s Mac, with an on-device privacy gate deciding what may cross the boundary. Perplexity also open-sourced the classifier behind that gate.
智能体助手存在一个结构性问题:使其变得有用的上下文——交易文档、特权文件、客户记录——恰恰是用户无法发送到云端的上下文。本周,Perplexity 推出了其在 Mac 上的解决方案。混合计算将单个 Perplexity Computer 任务在云端的前沿模型与用户 Mac 上的紧凑模型之间进行拆分,由设备端隐私门决定哪些内容可以跨越边界。Perplexity 还开源了该门背后的分类器。
Is it deployable? Yes, hybrid compute is live for Pro, Max, and Enterprise subscribers on any Apple silicon Mac running macOS 15 or later with at least 24GB of unified memory (32GB recommended). The local model installs in one click from the Mac app, with no Ollama, no separate runtime, and no API key, and local work consumes no cloud credits.
它是否可部署?是的,混合计算已面向 Pro、Max 和 Enterprise 订阅用户上线,适用于运行 macOS 15 或更高版本且至少拥有 24GB 统一内存(推荐 32GB)的任何 Apple Silicon Mac。本地模型可通过 Mac 应用一键安装,无需 Ollama、无需独立运行时、无需 API 密钥,且本地工作不消耗任何云积分。
What hybrid compute actually does
混合计算实际执行的操作
The direction of orchestration is the design decision. Computer starts every task in the cloud, where frontier models handle web search, planning, and long-horizon reasoning. When a step touches private files or sensitive data, Computer hands that step down to the local model on the Mac without restarting the task or losing context then merges both halves into one result.
编排的方向是设计决策。Computer 在云端启动每个任务,前沿模型负责网络搜索、规划和长程推理。当某一步骤涉及私有文件或敏感数据时,Computer 会将该步骤移交至 Mac 上的本地模型,而无需重启任务或丢失上下文,随后将两半结果合并为一个最终结果。
This inverts the local compute mode Perplexity shipped on NVIDIA DGX Spark a week earlier, which starts on the user’s hardware and escalates up to cloud models with permission. Same orchestrator, opposite default.
这反转了 Perplexity 一周前在 NVIDIA DGX Spark 上推出的本地计算模式,后者从用户的硬件开始,并在获得许可后向上升级至云端模型。使用相同的编排器,但默认方向相反。
Because Computer works with iPhone, a task can be triggered remotely while sensitive steps execute on the Mac at the desk. Perplexity positions an always-on Mac mini as a dedicated local inference node for exactly this pattern.
由于 Computer 可与 iPhone 配合使用,任务可以在远程触发,而敏感步骤则在书桌旁的 Mac 上执行。Perplexity 将始终开启的 Mac mini 定位为专为此类模式设计的专用本地推理节点。
The privacy gate is the load-bearing component
隐私门是关键承重组件
Before anything from a protected file reaches the cloud, an on-device classifier inspects it and the gate applies one of four outcomes: keep it local, mask the sensitive spans, refuse the action, or ask the user for consent. Credentials, payment card numbers, and government IDs get the strictest handling. Masked values are swapped for stand-ins on the way out and restored when the cloud answer returns.
在受保护文件中的任何内容到达云端之前,设备端分类器会对其进行检查,隐私门会应用以下四种结果之一:保留在本地、屏蔽敏感片段、拒绝操作或请求用户同意。凭据、银行卡号和政府身份证件受到最严格的处理。屏蔽的值在输出时被替换为占位符,并在云端答案返回时恢复。
PII-Tracer is a 0.6B bidirectional encoder adapted from a Qwen3 backbone, replacing the causal mask with padding-aware bidirectional attention over a 4,096-token window. A linear tagging head emits 37 labels, one outside-span label plus BIOES position labels for each of nine PII types, and an auxiliary head predicts whether a conversation contains sensitive material. Training ran three epochs on roughly 714,000 samples; a constrained Viterbi decoder resolves the label sequence at inference.
PII-Tracer 是一个基于 Qwen3 主干网络适配的 0.6B 双向编码器,它用填充感知的双向注意力机制替换了因果掩码,作用于 4,096 个 token 的窗口。一个线性标记头输出 37 个标签,包括一个非跨度标签以及针对九种个人身份信息(PII)类型的 BIOES 位置标签;另一个辅助头则预测对话是否包含敏感内容。训练在约 714,000 个样本上进行了三个 epoch;推理时使用受限的 Viterbi 解码器解析标签序列。
PII-TRACE, the accompanying benchmark, contains 13,148 synthetic conversations across 13 languages and 10 writing systems, with 37,431 character-level identifier mentions. Its central claim is that finding most PII in a long conversation is not the same as finding every copy of it.
配套的基准测试 PII-TRACE 包含跨越 13 种语言和 10 种书写系统的 13,148 条合成对话,共有 37,431 处字符级标识符提及。其核心观点是:在长对话中找到大部分个人身份信息,并不等同于找到它的每一个副本。
On results: across 12 detectors, PII-Tracer records the highest character F1 (0.629) and the second-best span-overlap and span-containment F1, behind GPT-5.6-sol. On consistency it leads by a wide margin — every mention found for 79.4% of recurring identifiers and 77.6% of cross-turn identifiers, versus 57.0% and 55.1% for GPT-5.6-sol. In the hardest bucket (6–10 mentions) it scores 0.691 against 0.464 for GPT-5.6-sol, 0.073 for GLiNER2-PII, and 0.045 for Claude Opus 4.8.
在结果方面:在 12 个检测器中,PII-Tracer 记录了最高的字符 F1 分数(0.629),以及在 GPT-5.6-sol 之后排名第二的跨度重叠和跨度包含 F1 分数。在一致性方面,它以巨大优势领先——对于 79.4% 的重复出现标识符和 77.6% 的跨轮次标识符,它能找到每一次提及,而 GPT-5.6-sol 分别为 57.0% 和 55.1%。在最难的桶(6–10 次提及)中,它的得分为 0.691,而 GPT-5.6-sol 为 0.464,GLiNER2-PII 为 0.073,Claude Opus 4.8 为 0.045。
It is very interesting to know that single-window recall drops from 0.975 on conversations under 1,000 characters to 0.687 at 10,000 characters or more. Perplexity’s fix is decoding, not retraining: 50%-overlap sliding windows lift overall character recall from 0.830 to 0.965 and multi-mention consistent detection from 0.794 to 0.954 on the same checkpoint.
有趣的是,单窗口的召回率在对话少于 1,000 个字符时为 0.975,而在 10,000 个字符或更多时降至 0.687。Perplexity 的解决方案在于解码而非重新训练:50% 重叠的滑动窗口将同一检查点的整体字符召回率从 0.830 提升至 0.965,将多次提及的一致性检测率从 0.794 提升至 0.954。
Explainer: how one task splits across cloud and Mac
解释器:一项任务如何在云端和 Mac 之间拆分
Models, controls, and availability
模型、控制措施与可用性
Perplexity’s announcement lists three local models at launch: Gemma 4 E4B, Qwen3.6 35B-A3B, and a Perplexity model post-trained for Computer. The product page’s setup flow points to a one-click download of PPLX Qwen 3.8 27B; Perplexity’s Hugging Face org carries matching pplx-computer-qwen-3-8-27b builds alongside pplx-pii-masking-vllm, the 0.6B token-classification model behind the gate.
Perplexity 的公告列出了发布时的三款本地模型:Gemma 4 E4B、Qwen3.6 35B-A3B,以及一款为 Computer 功能进行后训练的 Perplexity 模型。产品页面的设置流程指向一键下载 PPLX Qwen 3.8 27B;Perplexity 的 Hugging Face 组织仓库中提供了匹配的 pplx-computer-qwen-3-8-27b 构建版本,以及作为门禁背后 0.6B token 分类模型的 pplx-pii-masking-vllm。
For Enterprise, admins can set org-wide rules for what must stay on device, what may be masked, and what requires explicit approval — plus audit logs for when information leaves a machine. That is the piece that makes this usable for legal, healthcare, and financial teams rather than just interesting.
对于企业版,管理员可以设定全组织的规则,规定哪些数据必须保留在设备上、哪些可以被掩盖、哪些需要明确批准——此外还有当信息离开机器时的审计日志。正是这一部分使得该产品对法律、医疗和金融团队而言具有实用性,而不仅仅是有趣。
Key Takeaways
关键要点
- Hybrid compute starts tasks in the cloud and hands sensitive steps down to a local model on the Mac, mid-task.
- An on-device PII classifier gates the boundary: keep local, mask, refuse, or ask.
- PII-Tracer (0.6B) leads 12 detectors on character F1 (0.629) and on finding every recurring mention (79.4%).
- Long-context recall drops to 0.687 past 10K characters; sliding-window decoding recovers it to 0.965.
- Runs on Apple silicon, macOS 15+, 24GB unified memory minimum, for Pro, Max, and Enterprise.
- 混合计算在云端启动任务,并在中途将敏感步骤交由 Mac 上的本地模型处理。
- 设备端的 PII(个人身份信息)分类器作为边界网关:决定保留在本地、脱敏、拒绝或询问。
- PII-Tracer (0.6B) 在字符级 F1 值 (0.629) 和发现所有重复提及项 (79.4%) 方面领先于其他 12 个检测器。
- 当上下文超过 10K 字符时,长上下文召回率降至 0.687;滑动窗口解码可将其恢复至 0.965。
- 适用于 Apple Silicon、macOS 15+,最低需 24GB 统一内存,面向 Pro、Max 及企业版用户。
Check out the Perplexity announcement, the PII-TRACE research post, and the model on Hugging Face. 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.
查看 Perplexity 的公告、PII-TRACE 研究文章以及 Hugging Face 上的模型。此外,欢迎在 Twitter 上关注我们,别忘了加入我们拥有 15 万+成员的 ML SubReddit 并订阅我们的新闻通讯。等等!你在 Telegram 上吗?现在你也可以加入我们的 Telegram 群组。
Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us
需要与我们合作推广你的 GitHub 仓库、Hugging Face 页面、产品发布或网络研讨会等?请联系我们
The post Perplexity Releases Hybrid Compute on Mac: Cloud Agents Orchestrate Down to a Local Model, Gated On Device appeared first on MarkTechPost.
本文由 MarkTechPost 首发《Perplexity 发布 Mac 混合计算:云端代理编排至本地模型,设备端门控控制》。
更进一步:量化金融体系
看懂新闻只是起点——沿量化金融路径,把它变成能交付的工程能力