What is Computer Use Cloud?
+
A managed cloud sandbox built for AI agents. Each sandbox is a Linux desktop with a browser open inside. Your AI agent — Claude, GPT, or Gemini, your pick — drives it through one SDK.
Why both a browser and a computer?
+
Most agent tasks live in a browser, so we expose a browser surface for them. But some tasks need the desktop — open a file, edit a spreadsheet, work across two apps. Same sandbox, both available.
Which LLMs are supported?
+
Anthropic Claude, OpenAI GPT, and Google Gemini are first-class. The model is a kwarg on Sandbox(). Bring your own API key for the model provider; the sandbox itself is what we host.
How is this different from Browserbase or Browser Use Cloud?
+
Browserbase and Browser Use Cloud give you a browser in the cloud. We give you a desktop with a browser inside. If your agent ever needs to open a file outside the browser, edit a document, or use anything that isn't a web page, you need the desktop surface they don't have.
How is this different from E2B Desktop?
+
E2B Desktop is a general-purpose code-interpreter sandbox that happens to expose a desktop. We are focused specifically on AI agents driving browser plus desktop tasks. Same primitive, narrower product surface, different SDK ergonomics — one unified Sandbox with browser and computer namespaces.
What does the SDK look like?
+
One class. with Sandbox(model="claude-sonnet-4-6") as s, then s.browser.run("...") or s.computer.run("..."). The browser and computer share the same desktop — a file downloaded by the browser is visible to the computer.
Is the runtime open source?
+
Planned. The runtime drops as Apache-2.0 at milestone M5 in the public roadmap. Self-host the same sandbox image inside your VPC, point the SDK at your endpoint, and skip the cloud entirely if you'd rather.
Can I watch the agent run live?
+
Yes. Every sandbox exposes a public live view URL. Embed it in your own app via iframe, share it with a teammate for debugging, or watch from your dashboard.