AI News AI资讯 1d ago Updated 1d ago 更新于 1天前 49

Perplexity Releases Hybrid Compute on Mac: Cloud Agents Orchestrate Down to a Local Model, Gated On Device Perplexity在Mac上发布混合计算:云端代理编排至本地模型,设备端门控

Perplexity launched Hybrid Compute for Mac, splitting agentic tasks between cloud frontier models and a local on-device model, with an on-device privacy gate controlling what data crosses the boundary The system starts every task in the cloud for web search and planning, then hands sensitive steps down to the Mac mid-task without losing context — inverting the earlier local-first approach on NVIDIA DGX Spark Perplexity open-sourced PII-Tracer, a 0.6B bidirectional classifier (Qwen3 backbone) tha Perplexity推出Hybrid Compute功能,将AI任务在云端前沿模型与Mac本地模型之间动态拆分,解决敏感数据无法上云的结构性矛盾 引入PII-Tracer隐私门控机制,通过端侧分类器决定数据保留本地、脱敏、拒绝或请求用户同意,并开源该0.6B分类器模型 本地模型支持Gemma 4 E4B、Qwen3.6 35B-A3B及Perplexity定制版,需Apple Silicon Mac + macOS 15+ + 24GB统一内存 PII-TRACE基准测试显示PII-Tracer在字符级F1(0.629)和跨轮次一致性检测(79.4%)上领先12个对比模型 针对长上下文召回率下

72
Hot 热度
68
Quality 质量
70
Impact 影响力

Analysis 深度分析

TL;DR

  • Perplexity launched Hybrid Compute for Mac, splitting agentic tasks between cloud frontier models and a local on-device model, with an on-device privacy gate controlling what data crosses the boundary
  • The system starts every task in the cloud for web search and planning, then hands sensitive steps down to the Mac mid-task without losing context — inverting the earlier local-first approach on NVIDIA DGX Spark
  • Perplexity open-sourced PII-Tracer, a 0.6B bidirectional classifier (Qwen3 backbone) that detects and gates PII with four outcomes: keep local, mask, refuse, or ask user consent
  • PII-Tracer leads 12 detectors on character F1 (0.629) and consistency (79.4% of recurring identifiers found in full), with sliding-window decoding recovering long-context recall from 0.687 to 0.965
  • Available for Pro, Max, and Enterprise subscribers on Apple Silicon Macs with macOS 15+ and 24GB+ unified memory, with Enterprise offering org-wide policy controls and audit logs

Why It Matters

This addresses a fundamental tension in agentic AI: the most valuable context (private documents, client records) is also the most restricted, and sending it to the cloud creates compliance and trust barriers. By keeping sensitive steps on-device while leveraging cloud models for reasoning, Perplexity offers a practical architecture for enterprise-grade agentic assistants. The open-sourced PII-Tracer classifier also provides a reusable, high-accuracy tool for organizations building privacy-preserving AI systems.

Technical Details

  • Hybrid orchestration: Tasks begin in the cloud using frontier models for search, planning, and long-horizon reasoning. When a step involves private files or sensitive data, the orchestrator seamlessly hands that step to a local model on the Mac without restarting or losing context. The results from both halves are merged into a single output.
  • PII-Tracer classifier: A 0.6B bidirectional encoder adapted from Qwen3, using padding-aware bidirectional attention over a 4,096-token window (replacing causal masking). It emits 37 labels via a linear tagging head — one outside-span label plus BIOES position labels for nine PII types — plus an auxiliary head predicting whether a conversation contains sensitive material. Trained for three epochs on ~714,000 samples with a constrained Viterbi decoder at inference.
  • Sliding-window decoding: Single-window recall drops from 0.975 (under 1,000 characters) to 0.687 (10,000+ characters). Perplexity's fix uses 50%-overlap sliding windows, lifting overall character recall to 0.965 and multi-mention consistent detection to 0.954 without retraining.
  • PII-TRACE benchmark: 13,148 synthetic conversations across 13 languages and 10 writing systems, containing 37,431 character-level PII mentions. The benchmark emphasizes that finding most PII is not equivalent to finding every copy — a critical distinction for real-world deployment.
  • Local models and deployment: Three local models at launch — Gemma 4 E4B, Qwen3.6 35B-A3B, and a Perplexity post-trained Computer model (PPLX Qwen 3.8 27B). One-click install from the Mac app with no Ollama, no separate runtime, and no API key. Local work consumes no cloud credits. Enterprise admins can set org-wide rules and access audit logs.

Industry Insight

  • The cloud-first-then-local hybrid pattern is likely to become a standard architecture for enterprise agentic systems, as organizations balance the reasoning power of frontier models against compliance requirements around data residency and privacy.
  • The open-sourcing of PII-Tracer and the PII-TRACE benchmark sets a new bar for PII detection consistency — particularly the emphasis on finding every recurring mention rather than just the most obvious ones, which is where most existing detectors fail in long conversations.
  • Perplexity's positioning of an always-on Mac mini as a dedicated local inference node signals a growing market for consumer-grade hardware as private AI infrastructure, complementing cloud-first strategies with a practical on-device fallback for regulated workloads.

TL;DR

  • Perplexity推出Hybrid Compute功能,将AI任务在云端前沿模型与Mac本地模型之间动态拆分,解决敏感数据无法上云的结构性矛盾
  • 引入PII-Tracer隐私门控机制,通过端侧分类器决定数据保留本地、脱敏、拒绝或请求用户同意,并开源该0.6B分类器模型
  • 本地模型支持Gemma 4 E4B、Qwen3.6 35B-A3B及Perplexity定制版,需Apple Silicon Mac + macOS 15+ + 24GB统一内存
  • PII-TRACE基准测试显示PII-Tracer在字符级F1(0.629)和跨轮次一致性检测(79.4%)上领先12个对比模型
  • 针对长上下文召回率下降问题,采用50%重叠滑动窗口解码策略,将整体字符召回率从0.830提升至0.965

为什么值得看

本文揭示了Agentic AI落地企业场景的核心瓶颈——敏感数据隐私与云端模型能力之间的结构性冲突,并提供了可工程化的混合计算解决方案。对AI从业者而言,PII检测精度与长上下文处理的结合方案具有直接参考价值,同时开源的隐私门控架构为行业树立了新的合规实践标杆。

技术解析

  • 混合计算架构:任务默认在云端启动,由前沿模型处理网页搜索、规划和长程推理;当步骤涉及私有文件或敏感数据时,无缝切换至Mac本地模型执行,上下文不中断且结果合并输出。这与NVIDIA DGX Spark上的本地优先模式形成镜像设计。
  • PII-Tracer隐私门控:基于Qwen3骨干网络改造的0.6B双向编码器,采用4096-token窗口和padding-aware双向注意力机制,输出37类标签(含BIOES位置标注和9种PII类型),配合约束Viterbi解码器。训练数据约71.4万样本,经3个epoch优化。
  • 长上下文优化策略:单窗口召回率在对话长度超10K字符时从0.975骤降至0.687。Perplexity通过50%重叠滑动窗口解码而非重新训练,将整体字符召回率恢复至0.965,多提及一致性检测从0.794提升至0.954。
  • 基准测试表现:PII-TRACE包含13,148条跨13种语言、10种书写系统的合成对话,含37,431个字符级标识提及。PII-Tracer在 hardest bucket(6-10次提及)中得分0.691,远超GPT-5.6-sol的0.464和Claude Opus 4.8的0.045。
  • 部署规格:支持Pro/Max/Enterprise订阅用户,一键安装本地模型(无需Ollama或API密钥),本地计算不消耗云端积分。Enterprise版提供组织级策略配置和审计日志功能。

行业启示

  • 隐私优先的混合架构将成为企业级AI标配:随着Agentic AI深入法律、医疗、金融等敏感领域,"云端推理+本地隐私门控"的混合模式将取代纯云端方案,成为合规落地的关键路径。
  • PII检测精度决定混合计算的可行性边界:当前滑动窗口解码虽能提升召回率,但字符级F1仅0.629,意味着仍有约37%的PII可能漏检。行业需持续优化长上下文敏感信息识别能力,否则混合架构的安全承诺将大打折扣。
  • 端侧模型能力将重塑AI产品形态:Perplexity同时支持Gemma、Qwen及自研模型,反映端侧推理正从"兜底方案"转向"核心能力层"。未来AI产品需同时优化云端大模型与本地小模型的双轨协同体验。

Disclaimer: The above content is generated by AI and is for reference only. 免责声明:以上内容由 AI 生成,仅供参考。

Agent Agent Open Source 开源 LLM 大模型 Deployment 部署 Security 安全