Official Python SDK for the Computer Agents Cloud API. Execute Claude-powered AI agents in isolated cloud containers.
Project description
Computer Agents Python SDK
The official Python SDK for the Computer Agents Cloud API. Execute Claude-powered AI agents in isolated cloud containers.
Installation
pip install computer-agents
Quick Start
from computer_agents import ComputerAgentsClient
client = ComputerAgentsClient(api_key="ca_your_api_key")
# Execute a task
result = client.run(
"Create a REST API with Flask",
environment_id="env_xxx",
on_event=lambda e: print(e["type"]),
)
print(result.content)
print(f"Thread ID: {result.thread_id}")
Multi-Turn Conversations
# Create a thread for persistent conversation
thread = client.threads.create(environment_id="env_xxx")
# First message
result = client.threads.send_message(
thread["id"],
content="Create a Python web server",
on_event=lambda e: print(e),
)
# Follow-up (continues same session)
result2 = client.threads.send_message(
thread["id"],
content="Add authentication to the server",
)
Environments
# Create a custom environment
env = client.environments.create(
name="data-science",
internet_access=True,
runtimes={"python": "3.12"},
)
# Install packages
client.environments.install_packages(env["id"], "python", ["pandas", "numpy"])
# Add MCP servers
client.environments.update(
env["id"],
mcp_servers=[{
"type": "stdio",
"name": "filesystem",
"command": "npx",
"args": ["@modelcontextprotocol/server-filesystem", "/workspace"],
}],
)
Agents
# Create a custom agent
agent = client.agents.create(
name="Code Reviewer",
model="claude-sonnet-4-5",
instructions="You are a thorough code reviewer.",
enabled_skills=["web_search"],
)
# Use the agent
thread = client.threads.create(
environment_id="env_xxx",
agent_id=agent["id"],
)
Files
# Upload a file
client.files.upload_file(
"env_xxx",
filename="app.py",
content='print("hello")',
path="src",
)
# Download a file
content = client.files.get_file("env_xxx", "src/app.py")
# List files
files = client.files.list_files("env_xxx")
Git Operations
diff = client.git.diff("env_xxx")
client.git.commit("env_xxx", message="Update feature")
client.git.push("env_xxx")
Schedules
schedule = client.schedules.create(
name="Daily Report",
agent_id="agent_xxx",
agent_name="Reporter",
task="Generate daily report",
schedule_type="recurring",
cron_expression="0 9 * * *",
)
Configuration
The API key can be provided via:
- Constructor argument:
ComputerAgentsClient(api_key="ca_...") - Environment variable:
COMPUTER_AGENTS_API_KEY
# Custom base URL and timeout
client = ComputerAgentsClient(
api_key="ca_...",
base_url="https://custom-api.example.com",
timeout=120.0,
debug=True,
)
Context Manager
with ComputerAgentsClient(api_key="ca_...") as client:
result = client.run("Hello world", environment_id="env_xxx")
print(result.content)
# Client is automatically closed
API Resources
| Resource | Description |
|---|---|
client.threads |
Conversation management with SSE streaming |
client.environments |
Environment configuration and container lifecycle |
client.agents |
Agent configuration (model, instructions, skills) |
client.files |
File management in environment workspaces |
client.schedules |
Scheduled task management |
client.triggers |
Event-driven triggers |
client.orchestrations |
Agent-to-agent orchestration |
client.budget |
Budget and usage tracking |
client.billing |
Billing records and statistics |
client.git |
Git operations on workspaces |
Requirements
- Python >= 3.9
- httpx >= 0.25.0
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
computer_agents-2.2.0.tar.gz
(23.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file computer_agents-2.2.0.tar.gz.
File metadata
- Download URL: computer_agents-2.2.0.tar.gz
- Upload date:
- Size: 23.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
438001ed7500b114563f1042f8b42b3d1e57983c1107db4e771edbf08ebe4c79
|
|
| MD5 |
29234003d2a66cf9ea3ef13467c16048
|
|
| BLAKE2b-256 |
ab553ded02192d6afcadf5fdfe6d4295523dc4eb9e35f34f1966e27bfb20388a
|
File details
Details for the file computer_agents-2.2.0-py3-none-any.whl.
File metadata
- Download URL: computer_agents-2.2.0-py3-none-any.whl
- Upload date:
- Size: 30.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df1ed3aa759d877d716e2cb1e81abbb363aebe35bda6085a1cbaafc3541407b3
|
|
| MD5 |
6fb34efe8921bb74726849c09c26725d
|
|
| BLAKE2b-256 |
31460bab4c7e804f4666c006a2ab4e9a1d1461876cad151f9813179ee4daf96c
|