Skip to main content
Every Orgo computer runs on a dedicated instance with guaranteed resources. Choose the instance type that fits your workload.

Available instances

InstanceCPURAMAPI identifier
StandardStandard4GBorgo-computer-small
Medium2x8GBorgo-computer-medium
Large4x16GBorgo-computer-large
XL4x32GBorgo-computer-xl
All instances include Linux OS, full API access, and 1280x720 default resolution.

Instance details

orgo-computer-small

Standard CPU / 4GB RAMThe default instance. Great for lightweight browser automation, simple web scraping, and single-task agents.
ResourceValue
CPUStandard
RAM4GB
Default resolution1280x720
OSLinux
computer = Computer()  # Standard is the default
2x CPU / 8GB RAMHandles heavier browser workloads, multi-tab sessions, and agents that run multiple tools concurrently.
ResourceValue
CPU2x
RAM8GB
Default resolution1280x720
OSLinux
computer = Computer(ram=8, cpu=2)
4x CPU / 16GB RAMBuilt for development environments, data processing, and agents running resource-intensive applications.
ResourceValue
CPU4x
RAM16GB
Default resolution1280x720
OSLinux
computer = Computer(ram=16, cpu=4)
4x CPU / 32GB RAMMaximum memory for large-scale processing, memory-heavy applications, and enterprise workloads.
ResourceValue
CPU4x
RAM32GB
Default resolution1280x720
OSLinux
computer = Computer(ram=32, cpu=4)

Choosing an instance

Web scraping & simple tasks

Standard — Standard CPU / 4GB

Multi-tab browsing & automation

Medium — 2x CPU / 8GB

Dev environments & data processing

Large — 4x CPU / 16GB

Enterprise & memory-intensive work

XL — 4x CPU / 32GB

Usage

Pass ram and cpu when creating a computer to select your instance type:
from orgo import Computer

# Standard (default)
computer = Computer()

# Medium
computer = Computer(ram=8, cpu=2)

# Large
computer = Computer(ram=16, cpu=4)

# XL
computer = Computer(ram=32, cpu=4)

Accepted values

The API validates ram, cpu, and os on every computer creation request. Passing an invalid value returns an error.

RAM

ValueDescription
44GB (default)
88GB
1616GB
3232GB
6464GB
Maximum RAM per computer depends on your plan. Hacker: 4GB. Team: 8GB. Scale: 16GB.

CPU

ValueDescription
1Standard CPU (default)
22x CPU
44x CPU
88x CPU
1616x CPU

OS

ValueDescription
linuxLinux (default, only supported OS)

Resolution

Resolution is passed as a string in WIDTHxHEIGHTxDEPTH format. Default is 1280x720x24.
1024x768x24
1280x720x24
1920x1080x24

Auto-stop duration

Auto-stop controls how long a computer can sit idle before it suspends. Accepted formats:
ValueDescription
"0"Disable auto-stop (computer runs continuously)
"5m"5 minutes
"15m"15 minutes (free-tier default, enforced)
"1h"1 hour
"1h30m"1 hour 30 minutes
"1d"1 day
"7d"7 days
"30d"30 days (maximum)
Must be between 10 seconds and 30 days. Accepts Go duration format (5m, 1h30m) or day shorthand (1d, 7d). Free-tier computers are locked to 15 minutes. Paid plans default to no auto-stop.

Persistence & auto-stop

Computer behavior depends on your plan:
FreePaid (Hacker, Team, Scale)
PersistenceState preserved across auto-stopFull state and disk persistence
Auto-stop15 minutes of inactivity (enforced)Disabled by default, configurable per-computer
Free-tier computers auto-stop after 15 minutes of inactivity. Paid plans can configure auto-stop per-computer or disable it entirely. All plans preserve state across stops — restarting a computer restores it to where it left off. See the Auto-stop guide for details.

Included with every instance

All instance types share these capabilities:
  • Full REST API and SDK access
  • Template support for pre-configured environments
  • Screenshot, mouse, keyboard, and bash execution
  • File upload and download
  • VNC access
Instance type determines the compute resources per agent. The number of agents, storage, bandwidth, and other limits depend on your plan.