From 192151112e28ecfbbca3d9ade3cfac2332282c79 Mon Sep 17 00:00:00 2001 From: f-trycua Date: Sun, 12 Oct 2025 21:59:49 -0700 Subject: [PATCH] Rename to sandbox --- README.md | 2 +- docs/content/docs/agent-sdk/agent-loops.mdx | 2 +- docs/content/docs/computer-sdk/computers.mdx | 4 ++-- docs/content/docs/quickstart-cli.mdx | 2 +- docs/content/docs/quickstart-devs.mdx | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index df8ab727..5f32c316 100644 --- a/README.md +++ b/README.md @@ -153,7 +153,7 @@ from computer import Computer async with Computer( os_type="linux", provider_type="cloud", - name="your-container-name", + name="your-sandbox-name", api_key="your-api-key" ) as computer: # Take screenshot diff --git a/docs/content/docs/agent-sdk/agent-loops.mdx b/docs/content/docs/agent-sdk/agent-loops.mdx index 67fa966d..db1d8455 100644 --- a/docs/content/docs/agent-sdk/agent-loops.mdx +++ b/docs/content/docs/agent-sdk/agent-loops.mdx @@ -23,7 +23,7 @@ async def take_screenshot(): async with Computer( os_type="linux", provider_type="cloud", - name="your-container-name", + name="your-sandbox-name", api_key="your-api-key" ) as computer: diff --git a/docs/content/docs/computer-sdk/computers.mdx b/docs/content/docs/computer-sdk/computers.mdx index fe9155ce..1c3558da 100644 --- a/docs/content/docs/computer-sdk/computers.mdx +++ b/docs/content/docs/computer-sdk/computers.mdx @@ -23,7 +23,7 @@ This is a Cloud Sandbox running the Computer Server. Get a container at [trycua. computer = Computer( os_type="linux", provider_type="cloud", - name="your-container-name", + name="your-sandbox-name", api_key="your-api-key" ) @@ -37,7 +37,7 @@ This is a Cloud Sandbox running the Computer Server. Get a container at [trycua. const computer = new Computer({ osType: OSType.LINUX, - name: "your-container-name", + name: "your-sandbox-name", apiKey: "your-api-key" }); diff --git a/docs/content/docs/quickstart-cli.mdx b/docs/content/docs/quickstart-cli.mdx index 88d5e893..7bf53773 100644 --- a/docs/content/docs/quickstart-cli.mdx +++ b/docs/content/docs/quickstart-cli.mdx @@ -312,7 +312,7 @@ python -m agent.cli omniparser+ollama_chat/llama3.2:latest If you haven't set up environment variables, the CLI will guide you through the setup: -1. **Container Name**: Enter your cua container name (or get one at [trycua.com](https://www.trycua.com/)) +1. **Sandbox Name**: Enter your cua sandbox name (or get one at [trycua.com](https://www.trycua.com/)) 2. **CUA API Key**: Enter your cua API key 3. **Provider API Key**: Enter your AI provider API key (OpenAI, Anthropic, etc.) diff --git a/docs/content/docs/quickstart-devs.mdx b/docs/content/docs/quickstart-devs.mdx index 5b7b28a3..8a9adea7 100644 --- a/docs/content/docs/quickstart-devs.mdx +++ b/docs/content/docs/quickstart-devs.mdx @@ -103,7 +103,7 @@ Connect to your Cua computer and perform basic interactions, such as taking scre computer = Computer( os_type="linux", provider_type="cloud", - name="your-container-name", + name="your-sandbox-name", api_key="your-api-key" ) await computer.run() # Connect to the sandbox @@ -189,7 +189,7 @@ Connect to your Cua computer and perform basic interactions, such as taking scre const computer = new Computer({ osType: OSType.LINUX, - name: "your-container-name", + name: "your-sandbox-name", apiKey: "your-api-key" }); await computer.run(); // Connect to the sandbox