Train and test your browser agents in realistic environments
from plato import Plato
# Initialize client
plato = Plato(api_key="your-api-key")
# Initialize the environment
env = await client.make_environment("doordash")
# Start interaction
await env.reset()
cdp_url = await env.get_cdp_url()
# Take actions with your agent
your_agent = await YourAgent(cdp_url).start()
# Get final state mutations
state_changes = await env.get_state()