Computer Use
Use the computer like human-mouse interaction.
Example Usage
pythonCopyEditfrom beaconlabs import Task, Agent, ObjectResponse
from beaconlabs.client.tools import ComputerUse # Importing Computer Use
task = Task(
"Open Chrome and search inside the companies section for the latest health companies in YC",
tools=[ComputerUse] # Enabling Computer Use
)
agent = Agent("Browser Use Agent", model="claude/claude-3-5-sonnet")
agent.print_do(task)Last updated