Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion auth/react.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -266,4 +266,4 @@ Connection-level options — custom login URL, SSO/OAuth, custom proxy, session

## Reference integration

A full reference integration — Next.js shell, rewrites, end-to-end flow — lives at [`kernel/managed-auth-hosted-ui`](https://github.com/kernel/managed-auth-hosted-ui). It powers Kernel's own hosted login page and is a copy-pasteable starting point for embedding the component in your own app.
A full reference integration lives in the [`kernel/managed-auth-react`](https://github.com/kernel/managed-auth-react) repo's demo app. It's a copy-pasteable starting point for embedding the component in your own app.
12 changes: 0 additions & 12 deletions integrations/browser-use.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,6 @@ result = agent.run()
kernel.browsers.delete_by_id(kernel_browser.session_id)
```

<Info>
If you're using Browser Use versions `< 0.7.9`, you may need to use a [custom resize class](https://github.com/onkernel/create-kernel-app/blob/main/templates/python/browser-use/session.py) to correct viewport sizing for the browser session. Here's how to use it:

```python
agent = Agent(
task="Your automation task",
llm=your_llm_instance,
browser_session=BrowserSessionCustomResize(cdp_url=kernel_browser.cdp_ws_url)
)
```
</Info>

## Quick setup with our Browser Use example app

Alternatively, you can use our Kernel app template that includes a pre-configured Browser Use integration:
Expand Down
Loading