1. Deploy and invoke your web agent on our platform
Kernel’s platform allows you to to deploy your app’s code to our cloud. This allows you to co-locate your browser automation or web agent directly alongside the browser it controls in the cloud, minimizing latency and connection issues common with other platforms.Follow our quickstart guide to get started.
2. Connect to remote browsers via Chrome DevTools Protocol
For developers who already have browsers automations in production but want to use Kernel’s cloud-based browsers, you can quickly spin up remote browsers and connect to them with the Chrome DevTools Protocol:
Copy
Ask AI
import { Kernel } from '@onkernel/sdk';const kernel = new Kernel();const kernelBrowser = await kernel.browsers.create();const browser = await chromium.connectOverCDP(kernelBrowser.cdp_ws_url);