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 by viewing screens and manipulating interfaces. Companies like Anthropic have released computer use agents (CUAs) that can observe and interact with digital environments like humans do. This technology opens possibilities for a new category of AI-powered software and tools. Currently, the best models score around 67% accuracy on benchmarks like OSWorld (compared to human performance of ~72%), showing promise but indicating the technology is still maturing. Running these agents directly on your own machine works for experimentation but lacks security controls, scalability, and production-ready infrastructure. Orgo solves these problems.

How it works

from orgo import Computer
from dotenv import load_dotenv

load_dotenv()

# Create a computer
computer = Computer()

# Perform actions
computer.left_click(100, 200)
computer.type("Hello world")
computer.screenshot()

# Or use AI to control it
computer.prompt("Find a funny cat image and save it to the desktop")
The prompt() method uses Orgo’s hosted AI agent by default. You can also control the computer programmatically using methods like left_click(), type(), and scroll() to build custom AI agents.

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

Use Claude, GPT-4, or any other model

Get started