Skip to content

Commit d3d32fd

Browse files
committed
Update browser-use.mdx
Added informational note about Browser Use's configuration options.
1 parent 7d09d4e commit d3d32fd

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

integrations/browser-use.mdx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,16 @@ Replace your existing Browser initialization to use Kernel's CDP URL and display
3838
browser = Browser(
3939
cdp_url=kernel_browser.cdp_ws_url,
4040
headless=False,
41-
window_size={'width': 1024, 'height': 786},
42-
viewport={'width': 1024, 'height': 786},
41+
window_size={'width': 1024, 'height': 768},
42+
viewport={'width': 1024, 'height': 768},
4343
device_scale_factor=1.0
4444
)
4545
```
4646

47+
<Info>
48+
Browser Use supports a wide range of browser configuration parameters. See the full list in the <a href="https://docs.browser-use.com/customize/browser/all-parameters">Browser Use docs</a>. When running on Kernel, remember that browsers must use one of Kernel’s supported viewport sizes and refresh rates—see <a href="/browsers/viewport">Viewports</a> for the supported configurations.
49+
</Info>
50+
4751
### 4. Create and run your agent
4852

4953
Use your existing Agent setup with the Kernel-powered browser:

0 commit comments

Comments
 (0)