Let AI control your computer. Automate desktop tasks, browse the web, and interact with any application using natural language commands.
Click, drag, scroll, and interact with any UI element on screen
Type text, use keyboard shortcuts, and fill forms
Take screenshots to understand UI state and make decisions
Navigate websites, fill forms, and extract information
Open, save, and organize files across applications
Coordinate actions across multiple applications
from mythicdot import MythicDot
client = MythicDot()
# Computer use with tool
response = client.messages.create(
model="mythic-4-sonnet",
max_tokens=4096,
tools=[
{
"type": "computer_20241022",
"name": "computer",
"display_width_px": 1920,
"display_height_px": 1080
}
],
messages=[{
"role": "user",
"content": "Open Chrome, go to GitHub, and star my repository"
}]
)
# Process tool use requests
for block in response.content:
if block.type == "tool_use":
action = block.input["action"]
print(f"Action: {action}")
# Execute the action on the computer
Computer Use is powerful. Always run in a sandboxed environment, never give access to sensitive credentials, and review actions before execution in production. The model may make mistakes โ human oversight is essential.
Automate pulling data from web dashboards, generating reports, and sending them via email.
Test web and desktop applications by having AI navigate and verify functionality.
Bridge modern APIs with legacy applications that lack programmatic access.
Automate repetitive data entry tasks across multiple applications.
Computer Use is currently in limited beta. Join the waitlist to get early access.
Join Waitlist โ