A lightweight CLI and local API server to create, run and manage macOS and Linux virtual machines (VMs) natively on Apple Silicon.
Cua (pronounced “koo-ah”, short for Computer-Use Agent) is an open-source framework that combines high-performance virtualization with AI agent capabilities to enable secure, isolated environments for AI systems to interact with desktop applications.
Cua offers two primary capabilities in a single integrated framework:
High-Performance Virtualization - Create and run macOS/Linux virtual machines on Apple Silicon with near-native performance (up to 90% of native speed) using Apple's Virtualization.Framework
.
Computer-Use Interface & Agent - A framework that allows AI systems to observe and control these virtual environments - interacting with applications, browsing the web, writing code, and performing complex workflows.
If you only need the virtualization capabilities:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/lume/scripts/install.sh)"
For Lume usage instructions, refer to the Lume documentation.
If you want to use AI agents with virtualized environments:
Install the Lume CLI:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/trycua/cua/main/libs/lume/scripts/install.sh)"
Install the Python libraries:
pip install cua-computer cua-agent[all]
Use the libraries in your Python code:
from cua.computer import Computer
from cua.agent import ComputerAgent, LLM, AgentLoop, LLMProvider
async with Computer(verbosity=logging.DEBUG) as macos_computer:
agent = ComputerAgent(
computer=macos_computer,
loop=AgentLoop.OPENAI, # or AgentLoop.ANTHROPIC, or AgentLoop.OMNI
model=LLM(provider=LLMProvider.OPENAI) # or LLM(provider=LLMProvider.ANTHROPIC)
)
tasks = [
"Look for a repository named trycua/cua on GitHub.",
]
for task in tasks:
async for result in agent.run(task):
print(result)
Explore the Agent Notebook for a ready-to-run example.
Optionally, you can use the Agent with a Gradio UI:
python -m pip install ai-gradio
import gradio as gr
import ai_gradio
gr.load(
name='cua:gpt-4', # currently ignored
src=ai_gradio.registry,
title="Cua - AI Agent"
).launch()
Refer to the Gradio Notebook for a complete example.
For Developers only (contribute and use latest features):
# Clone the repository
git clone https://github.com/trycua/cua.git
cd cua
# Open the project in VSCode
code ./vscode/py.code-workspace
# Build the project
./scripts/build.sh
See our Developer-Guide for more information.
Library | Description | Installation | Version |
---|---|---|---|
Lume | CLI for running macOS/Linux VMs with near-native performance using Apple’s Virtualization.Framework . |
||
Computer | Computer-Use Interface (CUI) framework for interacting with macOS/Linux sandboxes | pip install cua-computer |
|
Agent | Computer-Use Agent (CUA) framework for running agentic workflows in macOS/Linux dedicated sandboxes | pip install cua-agent |
For the best onboarding experience with the packages in this monorepo, we recommend starting with the Computer documentation to cover the core functionality of the Computer sandbox, then exploring the Agent documentation to understand Cua’s AI agent capabilities, and finally working through the Notebook examples.
Demos of the Computer-Use Agent in action. Share your most impressive demos in Cua’s Discord community!
Library | Description | Installation | Version |
---|---|---|---|
Core | Core functionality and utilities used by other Cua packages | pip install cua-core |
|
PyLume | Python bindings for Lume | pip install pylume |
|
Computer Server | Server component for the Computer-Use Interface (CUI) framework | pip install cua-computer-server |
|
SOM | Self-of-Mark library for Agent | pip install cua-som |
We welcome and greatly appreciate contributions to Cua! Whether you’re improving documentation, adding new features, fixing bugs, or adding new VM images, your efforts help make lume better for everyone. For detailed instructions on how to contribute, please refer to our Contributing Guidelines.
Join our Discord community to discuss ideas or get assistance.
Cua is open-sourced under the MIT License - see the LICENSE file for details.
Apple, macOS, and Apple Silicon are trademarks of Apple Inc. Ubuntu and Canonical are registered trademarks of Canonical Ltd. This project is not affiliated with, endorsed by, or sponsored by Apple Inc. or Canonical Ltd.
f-trycua 💻 |
Pedro Piñera Buendía 💻 |
Amit Kumar 💻 |
Dung Duc Huynh (Kaka) 💻 |
Zayd Krunz 💻 |
Prashant Raj 💻 |
Leland Takamine 💻 |
ddupont 💻 |
Ethan Gutierrez 💻 |