Tip
Looking for the TypeScript version? Check out the repo here.
A Python library for creating computer use agent (CUA) systems using LangGraph. A CUA is a type of agent which has the ability to interact with a computer to preform tasks.
Short demo video:
cua-demo.mp4
Tip
This demo used the following prompt:
I want to contribute to the LangGraph.js project. Please find the GitHub repository, and inspect the read me,
along with some of the issues and open pull requests. Then, report back with a plan of action to contribute.
This library is built on top of LangGraph, a powerful framework for building agent applications, and comes with out-of-box support for streaming, short-term and long-term memory and human-in-the-loop.
pip install langgraph-cua
This project by default uses Scrapybara for accessing a virtual machine to run the agent. To use LangGraph CUA, you'll need both OpenAI and Scrapybara API keys.
export OPENAI_API_KEY=<your_api_key>
export SCRAPYBARA_API_KEY=<your_api_key>
Then, create the graph by importing the create_cua
function from the langgraph_cua
module.
from langgraph_cua import create_cua
from dotenv import load_dotenv
from langchain_core.messages import HumanMessage, SystemMessage
# Load environment variables from .env file
load_dotenv()
cua_graph = create_cua()
# Define the input messages
messages = [
SystemMessage(
content=(
"You're an advanced AI computer use assistant. The browser you are using "
"is already initialized, and visiting google.com."
)
),
HumanMessage(
content=(
"I want to contribute to the LangGraph.js project. Please find the GitHub repository, and inspect the read me, "
"along with some of the issues and open pull requests. Then, report back with a plan of action to contribute."
)
),
]
async def main():
# Stream the graph execution
stream = cua_graph.astream(
{"messages": messages},
stream_mode="updates"
)
# Process the stream updates
async for update in stream:
if "create_vm_instance" in update:
print("VM instance created")
stream_url = update.get("create_vm_instance", {}).get("stream_url")
# Open this URL in your browser to view the CUA stream
print(f"Stream URL: {stream_url}")
print("Done")
if __name__ == "__main__":
import asyncio
asyncio.run(main())
The above example will invoke the graph, passing in a request for it to do some research into LangGraph.js from the standpoint of a new contributor. The code will log the stream URL, which you can open in your browser to view the CUA stream.
You can find more examples inside the examples
directory.
The create_cua
function accepts a few configuration parameters. These are the same configuration parameters that the graph accepts, along with recursion_limit
.
You can either pass these parameters when calling create_cua
, or at runtime when invoking the graph by passing them to the config
object.
scrapybara_api_key
: The API key to use for Scrapybara. If not provided, it defaults to reading theSCRAPYBARA_API_KEY
environment variable.timeout_hours
: The number of hours to keep the virtual machine running before it times out.zdr_enabled
: Whether or not Zero Data Retention is enabled in the user's OpenAI account. IfTrue
, the agent will not pass theprevious_response_id
to the model, and will always pass it the full message history for each request. IfFalse
, the agent will pass theprevious_response_id
to the model, and only the latest message in the history will be passed. DefaultFalse
.recursion_limit
: The maximum number of recursive calls the agent can make. Default is 100. This is greater than the standard default of 25 in LangGraph, because computer use agents are expected to take more iterations.auth_state_id
: The ID of the authentication state. If defined, it will be used to authenticate with Scrapybara. Only applies if 'environment' is set to 'web'.environment
: The environment to use. Default isweb
. Options areweb
,ubuntu
, andwindows
.
LangGraph CUA integrates with Scrapybara's auth states API to persist browser authentication sessions. This allows you to authenticate once (e.g., logging into Amazon) and reuse that session in future runs.
Pass an auth_state_id
when creating your CUA graph:
from langgraph_cua import create_cua
cua_graph = create_cua(auth_state_id="<your_auth_state_id>")
The graph stores this ID in the authenticated_id
state field. If you change the auth_state_id
in future runs, the graph will automatically reauthenticate.
from scrapybara import Scrapybara
client = Scrapybara(api_key="<api_key>")
instance = client.get("<instance_id>")
auth_state_id = instance.save_auth(name="example_site").auth_state_id
client = Scrapybara(api_key="<api_key>")
instance = client.get("<instance_id>")
instance.modify_auth(auth_state_id="your_existing_auth_state_id", name="renamed_auth_state")
Note
To apply changes to an auth state in an existing run, set the authenticated_id
state field to None
to trigger re-authentication.
LangGraph CUA supports Zero Data Retention (ZDR) via the zdr_enabled
configuration parameter. When set to true, the graph will not assume it can use the previous_message_id
, and all AI & tool messages will be passed to the OpenAI on each request.
To get started with development, first clone the repository:
git clone https://github.com/langchain-ai/langgraph-cua.git
Create a virtual environment:
uv venv
Activate it:
source .venv/bin/activate
Then, install dependencies:
uv sync --all-groups
Next, set the required environment variables:
cp .env.example .env
Finally, you can then run the integration tests:
pytest -xvs tests/integration/test_cua.py