Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.salad.com/llms.txt

Use this file to discover all available pages before exploring further.

Last Updated: May 18, 2026

Introduction

NVIDIA NemoClaw is an open-source reference stack from that runs OpenClaw inside a sandboxed container environment NVIDIA OpenShell. It adds OS-level filesystem and network isolation to OpenClaw agents, making it safer to run autonomous AI assistants on your machine. NemoClaw supports custom OpenAI-compatible inference endpoints, so you can point it at a model on SaladCloud instead of a cloud provider. NemoClaw works with SaladCloud in two ways:
  • Salad AI Gateway - no infrastructure to deploy or manage. Sign up for access, point NemoClaw at a single shared endpoint, and use your Salad API key with standard authentication. Currently in closed beta with monthly flat-rate access.
  • Self-hosted model - deploy your own LLM recipe on SaladCloud Container Engine, billed per hour. Note: NemoClaw cannot pass custom headers, so authentication must be disabled on self-hosted deployments.
NemoClaw is currently in alpha (as of March 2026). APIs, configuration schemas, and runtime behavior are subject to breaking changes between releases. It is not recommended for production use.

Prerequisites

Before getting started, make sure you have:
  • A SaladCloud account
  • Docker installed (Linux/Windows WSL2) or Apple Container (macOS)
  • A Linux, macOS, or Windows (WSL2) machine

Step-by-Step Setup

Step 1: Choose Your Backend

Salad AI Gateway is the recommended option for NemoClaw - it uses standard Bearer token authentication, which NemoClaw supports natively.
  1. Sign up for early access at salad.com/ai-gateway.
  2. Once approved, find your Salad API key in the portal.
Available models:
ModelDescription
qwen3.6-35b-a3bQwen 3.6 35B-A3B - best for agentic tasks, coding, and complex reasoning
qwen3.6-27bQwen 3.6 27B - strong balance of capability and speed
qwen3.5-9bQwen 3.5 9B - fastest response times, suited for lighter tasks

Step 2: Install NemoClaw

Run the official install script:
curl -fsSL https://www.nvidia.com/nemoclaw.sh | bash
Verify the installation:
nemoclaw --version

Step 3: SaladCloud Authentication

AI Gateway uses standard Bearer token authentication. Enter your Salad API key when the onboarding wizard prompts for an API key - no additional configuration needed.

Step 4: Run the Onboarding Wizard

Start NemoClaw onboarding:
nemoclaw onboard
When prompted to select an inference endpoint:
  1. Choose Other OpenAI-compatible endpoint from the provider list
  2. Enter your endpoint URL when prompted:
  • Endpoint URL: https://ai.salad.cloud/v1 - API key: your Salad API key - Model name: e.g. qwen3.6-35b-a3b
  1. NemoClaw will build a container and validate connectivity to the endpoint before completing setup
  2. Follow the remaining prompts to finish configuration

Step 5: Test the Connection

Once onboarding completes you can connect to your sandboxed assistant by running nemoclaw <your_assistant_name> connect and then connecting to it via the local TUI (openclaw tui), by accessing local dashboard (ws://127.0.0.1:18789) or by setting up a messaging channel (e.g., Telegram bot).
“Hello! Summarize what SaladCloud is in two sentences.”
If NemoClaw responds, your setup is complete.

Model Recommendations

  • Qwen 3.6-35B-A3B: Best for complex assistant tasks and agentic workflows
  • Qwen 3.5-9B: Suitable for simple Q&A and quick responses