Your Data Never Leaves. Your Endpoints Never Share. Your Agents Stay Private.
Deploy OpenClaw on Nebius Serverless and connect it to dedicated Token Factory endpoints with zero data retention. Your prompts and documents are never stored at rest. Optional dedicated endpoints give you isolation and stable latency for sensitive workloads — legal, finance, healthcare, HR.
Jump to Step-by-Step GuideTeams handling sensitive data, compliance-focused orgs, regulated industries
Zero-retention inference with dedicated endpoints for data isolation
"Our legal team approved this in one meeting — zero retention plus dedicated endpoints was exactly what they needed"
A private OpenClaw agent on Nebius Serverless processing confidential documents
Dedicated Token Factory endpoints with zero data retention enabled
An end-to-end workflow where no data is stored at rest at any point
How zero retention works at the infrastructure level and what guarantees you get
Deploy OpenClaw on Serverless with dedicated Token Factory endpoints
Build a workflow that processes private documents end-to-end
Architecture review, cost analysis, and getting your security team on board
Follow these steps during the workshop. Each step includes commands you can copy, tips from our mentors, and a checkpoint to verify before moving on.
Install and configure the Nebius AI Cloud CLI for managing serverless endpoints and dedicated infrastructure.
# Install Nebius CLIcurl -sSL https://storage.eu-north1.nebius.cloud/cli/install.sh | bash# Loginnebius auth login# Verify configcat ~/.nebius/config.yaml
Running 'nebius iam whoami' returns your user info without errors.
Configure a VPC network and subnet for your private agent deployment. This keeps your traffic off the public internet.
# List networksnebius vpc network list# Get subnet IDexport SUBNET_ID=$(nebius vpc subnet get-by-name \--name default-subnet --format jsonpath='{.metadata.id}')echo $SUBNET_ID
You have SUBNET_ID exported and ready for deployment.
Deploy the OpenClaw agent on a Nebius Serverless endpoint. CPU-only — the agent orchestrator doesn't need a GPU.
# Generate credentialsexport AUTH_TOKEN=$(openssl rand -hex 32)# Deploy OpenClawnebius msp serverless v1alpha1 endpoint create \--name openclaw-private \--container-image openclaw:latest \--container-template-resources-platform cpu-d3 \--container-template-resources-preset 4vcpu-16gb \--port 8080 \--username admin \--password "$AUTH_TOKEN" \--network-id <your-network-id> \--parent-id <your-project-id># Get endpoint infoexport ENDPOINT_ID=$(nebius msp serverless v1alpha1 endpoint get-by-name \--name openclaw-private --format jsonpath='{.metadata.id}')
Your OpenClaw endpoint is active and responding to health checks.
Set up a dedicated Token Factory endpoint with zero data retention. This gives you isolated inference — your prompts never touch shared infrastructure.
# Set your dedicated TF endpointexport TF_API_KEY=<your-dedicated-tf-api-key>export TF_ENDPOINT=https://<your-dedicated-endpoint>.nebius.com# Test zero-retention endpointcurl $TF_ENDPOINT/v1/chat/completions \-H "Authorization: Bearer $TF_API_KEY" \-H "Content-Type: application/json" \-d '{"model": "meta-llama/Meta-Llama-3.1-70B-Instruct","messages": [{"role": "user", "content": "Test message - verify zero retention"}],"max_tokens": 50}'
Your dedicated endpoint returns completions and you've confirmed zero-retention is enabled in the console.
Create an agent workflow that processes sensitive documents — contracts, medical records, or financial reports — with full privacy guarantees.
Your agent processes 3 sample documents and returns accurate extractions. No data remains on the endpoint after processing.
Set up audit logging so your security team can verify what happened without seeing the actual data.
# View endpoint logsnebius msp serverless v1alpha1 endpoint logs $ENDPOINT_ID# Check endpoint status and uptimenebius msp serverless v1alpha1 endpoint get $ENDPOINT_ID
You can pull audit logs that show processing activity without exposing document contents.
Document your architecture for your security team and plan the production rollout.
You have a compliance-ready architecture doc, cost estimates, and a deploy script for production.
RSVP required. Spots are limited since we provide hands-on support for every attendee.
Register Now