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
14 changes: 13 additions & 1 deletion apps/develop.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,19 @@ An `Invocation` is a single execution of an action. Invocations can be triggered

## Getting started: create an app

First, install the Kernel SDK and create an app.
First, install the Kernel SDK for your language:

<CodeGroup>
```bash Typescript/Javascript
npm install @onkernel/sdk
```

```bash Python
pip install kernel
```
</CodeGroup>

Then create an app:

<CodeGroup>
```typescript Typescript/Javascript
Expand Down
6 changes: 6 additions & 0 deletions browsers/create-a-browser.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ Kernel browsers were designed to be lightweight, fast, and efficient for cloud-b

## 1. Create a Kernel browser

<Info>
First, install the Kernel SDK:
- Typescript/Javascript: `npm install @onkernel/sdk`
- Python: `pip install kernel`
</Info>

Use our SDK to create a browser:

<CreateBrowserSnippet />
Expand Down
6 changes: 6 additions & 0 deletions introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ Kernel is a developer platform that provides Crazy Fast Browser Infrastructure f

## kernel.browsers.create()

<Info>
To use the Kernel SDK, install it first:
- Typescript/Javascript: `npm install @onkernel/sdk`
- Python: `pip install kernel`
</Info>

If you are already familiar with browser vendors, you can immediately start using our browsers with `kernel.browsers.create()`. We return a CDP url that you can connect any Playwright or Puppeteer automation to.

<CodeGroup>
Expand Down