Skip to main content
Orgo Hero Light

Overview

Orgo is desktop infrastructure for AI agents. Launch headless cloud VMs that AI models can control and interact with.

What is computer use?

AI computer use enables AI models to directly control computers — viewing screens, clicking, typing, and running commands just like a human. Anthropic, OpenAI, and Google have all shipped computer use agents (CUAs) that can interact with desktop environments autonomously. Running these agents on your own machine works for experimentation but lacks security, scalability, and production-ready infrastructure. Orgo provides cloud desktops purpose-built for AI agents.

How it works

Use the standard OpenAI SDK to control a cloud computer with AI:
from openai import OpenAI
from orgo import Computer

computer = Computer()

client = OpenAI(
    base_url="https://api.orgo.ai/api/v1",
    api_key="sk_live_..."
)

response = client.chat.completions.create(
    model="claude-sonnet-4.6",
    messages=[{"role": "user", "content": "Find a funny cat image and save it to the desktop"}],
    extra_body={"computer_id": computer.computer_id},
)

print(response.choices[0].message.content)
The AI agent sees the screen, clicks, types, and runs commands — handling the full loop automatically. You can also control the computer programmatically using methods like computer.left_click(), computer.type(), and computer.bash().

Agent loop

Computer use agents typically operate in a loop:
  1. See - Capture a screenshot
  2. Decide - AI analyzes the screen and decides what to do
  3. Act - Perform mouse/keyboard actions
  4. Repeat - Continue until task is complete

Key features

Fast boot

Computers boot in under 500ms

Full control

Mouse, keyboard, and code execution

Templates

Pre-configure environments with installed software

Bring your own model

Claude, GPT-4, OpenAI-compatible API

Get started