Diagram of a Privacy Router: local models for sensitive data, cloud models for everything else

    NemoClaw: NVIDIA's Privacy Router and What It Means for Agent Architecture

    17. März 20264 min read
    Till Freitag

    TL;DR:NVIDIA calls it a Privacy Router: sensitive data stays on local models, everything else goes to the cloud. Policy-driven, not agent-decided. For Europe, this isn't a nice-to-have – it's table stakes."

    Till Freitag

    In 30 Seconds

    NVIDIA is now officially in the Claw business. At GTC, they announced NemoClaw – enterprise security for OpenClaw agents. The most interesting concept: a Privacy Router that routes sensitive queries to local Nemotron models and everything else to cloud frontier models. Alongside it, the new Nemotron 3 model family with a Nano variant running 3B active parameters and a 1M token context window.

    Why Privacy Routing Matters

    Every production router for AI agents today optimizes for cost. Cheap tasks go to cheap models, complex analysis goes to more capable ones. That works – but it's missing a second axis: privacy.

    The idea: agents need two routing dimensions:

    AxisDecisionExample
    CostWhich model is most efficient?Triage → small model, analysis → large model
    PrivacyCan this data leave the infrastructure?Customer data → local, general query → cloud

    Nobody has shipped the privacy axis in production yet. Every router optimizes cost only. NVIDIA's announcement changes that – at least conceptually.

    What NemoClaw Actually Does

    NemoClaw is a security layer for OpenClaw agents. The core features:

    Privacy Router

    Sensitive queries get routed to local Nemotron models, everything else to cloud frontier models. Critically: the routing decision is made by policy, not by the agent. This is a fundamental distinction – the agent doesn't get to decide whether data is sensitive.

    Query → Policy Engine → Sensitivity Check
                                ├── sensitivelocal Nemotron model
                                └── non-sensitive → cloud frontier model

    Sandboxing

    NemoClaw uses containerization for tool isolation. It's a valid approach, but not the only one:

    ApproachProjectTrade-off
    ContainersNemoClawProven, but overhead
    WASM SandboxesIronClawLightweight, less isolated
    Kernel-LevelnonoMaximum isolation, higher complexity

    The market is still figuring out how to properly contain agents. Containers are the conservative path – but whether they scale with thousands of parallel tool calls remains to be seen.

    Nemotron 3: The Local Model for the Privacy Router

    Alongside NemoClaw, NVIDIA introduced the Nemotron 3 model family. Architecture: Hybrid Mamba-Transformer with Mixture-of-Experts (MoE).

    The Nano variant is particularly interesting:

    • 3B active parameters (significantly more total parameters via MoE)
    • 1M token context window
    • Hybrid architecture for efficient local inference

    If the benchmarks hold up, this is exactly the kind of model you'd want on the receiving end of a privacy router: small enough for local inference, large enough for meaningful processing, and with a context window that covers complex documents.

    No independent benchmarks yet – numbers come from NVIDIA's presentation. Assessment to follow once the model is available.

    What This Means for Agent Architecture

    Privacy routing isn't a new concept. In the 5 building blocks architecture for AI agents, it appears as a cross-cutting concern: model routing by data sensitivity. But there's a world between concept and product.

    NVIDIA putting "Privacy Routing" in a GTC keynote gives the concept legitimacy. The market signal:

    1. Privacy-aware routing becomes standard – not optional
    2. Policy-driven, not agent-decided – the agent must not assess sensitivity itself
    3. Local models become first-class citizens – not just a fallback for offline scenarios

    The European Perspective

    For wider adoption in Europe, privacy routing isn't a feature. It's table stakes. GDPR, Schrems II, the AI Act – all require demonstrable control over where data flows. A router that automates this decision on a policy basis solves a real compliance problem.

    Open Questions

    The implementation details are still thin. The docs describe the vision, but the actual routing configuration isn't publicly documented yet. That's expected for alpha software. Still, questions remain:

    • How granular are policies? Field-level, document-level, or query-level?
    • How is sensitivity classified? Automatically, manually, or both?
    • How does the local path perform? Latency difference between local Nemotron and cloud frontier?
    • How does this integrate with existing OpenClaw deployments?

    Conclusion

    NVIDIA didn't launch a finished product with NemoClaw – they validated a concept. Privacy routing – splitting model routing by cost AND data sensitivity – is an idea that's been discussed in the agent community for months. Putting it in a GTC keynote makes it real.

    Three takeaways:

    1. Privacy Router ≠ VPN – It's not about encryption, it's about routing decisions at the policy level
    2. Nemotron 3 Nano could be the local building block – 3B parameters + 1M context with hybrid architecture
    3. Not optional for Europe – Anyone deploying AI agents in the EU needs demonstrable privacy routing

    The 5 Building Blocks of an AI AgentLearn about Agentic EngineeringGet in touch

    TeilenLinkedInWhatsAppE-Mail

    Related Articles

    Architecture diagram of a Privacy Router: data flow split into local and cloud paths
    March 17, 20266 min

    Building a Privacy Router with OpenClaw: A Practical Guide with Code

    Privacy Routing is the concept – but how do you build it? A practical guide with OpenClaw, a policy engine, and concrete

    Read more
    Personal AI agent as central hub, connected to mail, calendar, chat and code – sitting on a secure runtime layer
    April 23, 20265 min

    Globster: monday.com Enters the Personal AI Agent Game – on NVIDIA's NemoClaw

    monday agent labs just launched Globster: personal AI agents built on OpenClaw, secured by NVIDIA's NemoClaw runtime. Wh

    Read more
    Three isolation layers for AI agents: containers, WASM, and kernel-level
    March 17, 20265 min

    Agent Sandboxing: Containers vs. WASM vs. Kernel – Three Ways to Contain AI Agents

    AI agents need isolation. But which kind? Containers, WASM, or kernel-level – three approaches compared with concrete tr

    Read more
    Architecture diagram of the 5 building blocks of an AI agent: Runtime, Channels, Memory, Tools, and Self-Scheduling
    March 10, 20265 min

    The 5 Building Blocks of an AI Agent – What's Really Under the Hood

    Anthropic, AWS, and Google have published their agent frameworks. But what does an AI agent actually need? 5 building bl

    Read more
    Minimalist illustration of a developer with a ponytail and oval glasses skeptically reviewing code on a screen
    June 14, 20265 min

    Ponytail: The Best Code Is the Code You Never Wrote

    A dev built Ponytail because his AI agents wrote 500 lines for a 5-line problem. The result: 80-94% less code, 47-77% ch

    Read more
    Enterprise AI agents connecting securely through the Gemini Enterprise Agent Marketplace
    May 28, 20263 min

    Google's Agent Marketplace Goes Live – And monday.com Is Already Inside

    Google just opened Gemini Enterprise to partner-built AI agents – and monday.com is one of the first in. What that means

    Read more
    Pipeline schematic of a Dark Software Factory: a JIRA ticket in status \"Ready for Dev\" triggers parallel Claude Code sub-agents that produce a draft GitHub pull request, with a human review gate before merge
    April 30, 20266 min

    AI Agentic First at Groupon: What Ales Drabek's Dark Software Factory Teaches Us

    Ales Drabek, CTIO at Groupon, runs two patterns in production: Dark Software Factory and Speedboats. What that reveals a

    Read more
    Architecture diagram: central orchestrator agent connecting three specialised sub-agents (Sales, CRM, Ops) via TOOLS.md interfaces to operational enterprise systems
    April 30, 20267 min

    Enterprise-Grade Agentic Setup: Why an API Key Is Not an AI Strategy

    An API key on your website is child's play. An agentic setup with specialised sub-agents, TOOLS.md, clean system prompts

    Read more
    Futuristic marketplace for AI agents – Agentalent.ai by monday.com
    March 24, 20263 min

    Agentalent.ai: monday.com Launches the First Marketplace for Hiring AI Agents

    monday.com launches Agentalent.ai – a marketplace where companies can 'hire' AI agents for real business roles. Here's w

    Read more