PAAC: Privacy-Aware Agentic Device-Cloud Collaboration
Summary
This paper introduces PAAC, a privacy-aware agentic framework for device-cloud collaboration that uses a decoupled architecture and LLM-driven sanitization to protect sensitive data while maintaining high performance.
View Cached Full Text
Cached at: 05/13/26, 12:15 PM
Paper page - PAAC: Privacy-Aware Agentic Device-Cloud Collaboration
Source: https://huggingface.co/papers/2605.08646
https://huggingface.co/papers/2605.08646#%F0%9F%94%91-tldr🔑 TL;DR
PAAC reframes the device-cloud split as atrust boundaryrather than a compute split, with two contributions working in tandem: a decoupled agentic architecture and an LLM-driven privacy sanitizer.
https://huggingface.co/papers/2605.08646#%F0%9F%A4%9D-decoupled-architecture🤝 Decoupled Architecture
Cloud-reason-and-plan, device-execute-and-judge. The cloud agent reasons and plans over typed placeholder tokens (e.g.,\{BALANCE: \.\.\.\}); the on-device agent identifies sensitive spans, executes tools with real values, and distills each step’s outcome into compact key findings. Role specialization itself becomes the privacy mechanism, and per-step distillation keeps each agent’s input compact across turns, avoiding the trajectory-coupled context growth that breaks single-agent pipelines.
https://huggingface.co/papers/2605.08646#%E2%9A%99%EF%B8%8F-proposerverifierregistry-sanitization⚙️ Proposer–Verifier–Registry Sanitization
The on-device LLM onlyproposes(span, proxy token) pairs; a deterministic append-only regex registry handles all substitution and reversal. This preserves tool-call fidelity, gives cross-round consistency, and locks in first-turn protection even if the on-device LLM is later compromised.
https://huggingface.co/papers/2605.08646#%F0%9F%93%8A-results-qwen3-4b–gemini-3-flash📊 Results (Qwen3-4B + Gemini 3 Flash)
- 📈+15-36% accuracyand2-6× lower leakagevs SOTA device-cloud baselines on \\tau^2-Bench Airline/Retail and GAIA
- 🎯 0% leakage on open-vocab targets (CLUTRR names) where pattern-based methods hit 38.6%
- 🪶 Stable accuracy and token cost as privacy tightens; gains hold across 17 more benchmarks in 10 domains
Similar Articles
Decentralized Granular Access Control for Agentic AI Systems in Critical Infrastructure
This paper presents a decentralized, multi-layered access control architecture for autonomous AI agents in critical cloud infrastructure, introducing a compound identity model, hierarchical permissions, decentralized policy ownership, and progressive trust escalation. Deployed at a major cloud provider, it achieved zero unauthorized write operations over eight months.
The Agent Access Model (27 minute read)
Cloudflare proposes an Agent Access Model (AAM) to adapt Zero Trust security controls for AI agents, emphasizing task-scoped ephemeral access and least privilege.
ProACT: Towards Breakdown-Aware Proactive Agent in Multi-User Collaboration
ProACT introduces a breakdown-aware agent framework for multi-user collaboration, where the agent proactively detects collaboration breakdowns and decides whether to intervene. The paper also presents the first multi-user collaboration benchmark for evaluating such proactive agents.
When Cloud Agents Meet Device Agents: Lessons from Hybrid Multi-Agent Systems
This paper systematically studies hybrid multi-agent systems combining cloud-based LLMs and on-device SLMs, revealing task-dependent optimal architectures and challenging the assumption that more frontier compute always improves performance.
PrivacyAlign: Contextual Privacy Alignment for LLM Agents
PrivacyAlign introduces a human-annotated dataset and training framework for aligning LLM agents to respect contextual privacy norms, showing that frontier models still leak sensitive information and that human-grounded evaluation improves alignment.