Skip to main content
Orgo exposes programmatic endpoints for every computer action - screenshot, click, type, key, scroll, bash. You bring the model, Orgo provides the computer. Any model with computer use support works. Here’s how to wire them up.

Anthropic Claude

Claude Sonnet 4.6 and Opus 4.6 support computer use via the beta Messages API.
Models: claude-sonnet-5, claude-opus-4-8 Tool: computer_20251124 + bash_20250124 Betas: computer-use-2025-11-24, computer-use-2025-01-24 Docs: Anthropic Computer Use

OpenAI GPT

OpenAI’s computer use works through the Responses API with a built-in computer tool.
Model: computer-use-preview Tool: computer_use_preview Docs: OpenAI Computer Use

Google Gemini

Gemini uses normalized coordinates (0-999 grid) and supports browser and desktop environments.
Model: gemini-2.5-computer-use-preview-10-2025 Tool: ComputerUse with Environment.ENVIRONMENT_BROWSER Coordinates: Normalized 0-999 (scale to pixel resolution) Docs: Gemini Computer Use

Other models

Any model that outputs structured actions (click, type, screenshot) can work with Orgo. The pattern is always the same:
  1. Create a computer with Computer()
  2. Screenshot with computer.screenshot_base64()
  3. Send the screenshot + instruction to your model
  4. Execute the model’s actions with computer.left_click(), computer.type(), etc.
  5. Loop until the task is done
Models like Kimi K2.5, Agent S2, and other open-source CUA models all follow this pattern.

Orgo action reference

Full API details: API Reference