Skip to content

Commit e570dea

Browse files
authored
Merge branch 'main' into tembo/kernel-429-create-kernel-app-add-gemini-computer-use-example-to-create
2 parents 0315e05 + 80b8048 commit e570dea

File tree

26 files changed

+32
-32
lines changed

26 files changed

+32
-32
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ kernel deploy index.ts # --env OPENAI_API_KEY=XXX if Stagehand; --env ANTHROPIC
113113
kernel deploy main.py # --env OPENAI_API_KEY=XXX if Browser Use
114114
```
115115

116-
If deploying an app that requires environment variables, make sure to [set them](https://docs.onkernel.com/launch/deploy#environment-variables) when you `deploy`.
116+
If deploying an app that requires environment variables, make sure to [set them](https://onkernel.com/docs/launch/deploy#environment-variables) when you `deploy`.
117117

118118
5. Invoke your application:
119119

@@ -157,7 +157,7 @@ These are the sample apps currently available when you run `npx @onkernel/create
157157

158158
For more information about Kernel and its features, visit:
159159

160-
- [Kernel Documentation](https://docs.onkernel.com/quickstart)
160+
- [Kernel Documentation](https://onkernel.com/docs/quickstart)
161161
- [Kernel Homepage](https://onkernel.com)
162162

163163
## Contributing

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@onkernel/create-kernel-app",
3-
"version": "0.1.35",
3+
"version": "0.1.37",
44
"description": "Create Kernel sample applications",
55
"main": "dist/index.js",
66
"type": "module",

templates/python/advanced-sample/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description = "Sample application implementing advanced Kernel configs"
55
readme = "README.md"
66
requires-python = ">=3.11"
77
dependencies = [
8-
"kernel>=0.11.1",
8+
"kernel>=0.14.2",
99
"playwright>=1.52.0"
1010
]
1111

templates/python/browser-use/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
This is a simple Kernel application that implements the Browser Use SDK.
44

5-
See the [docs](https://docs.onkernel.com/build/browser-frameworks) for information.
5+
See the [docs](https://onkernel.com/docs/build/browser-frameworks) for information.

templates/python/browser-use/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class TaskInput(TypedDict):
1313
task: str
1414

1515
# LLM API Keys are set in the environment during `kernel deploy <filename> -e OPENAI_API_KEY=XXX`
16-
# See https://docs.onkernel.com/launch/deploy#environment-variables
16+
# See https://onkernel.com/docs/launch/deploy#environment-variables
1717
llm = ChatOpenAI(model="gpt-4.1")
1818

1919
@app.action("bu-task")

templates/python/browser-use/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ readme = "README.md"
66
requires-python = ">=3.11"
77
dependencies = [
88
"browser-use>=0.7.10",
9-
"kernel>=0.11.1",
9+
"kernel>=0.14.2",
1010
"pydantic>=2.10.6",
1111
]

templates/python/computer-use/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ This is a simple Kernel application that implements a prompt loop using Anthropi
44

55
It generally follows the [Anthropic Reference Implementation](https://github.com/anthropics/anthropic-quickstarts/tree/main/computer-use-demo) but replaces `xodotool` and `gnome-screenshot` with Playwright.
66

7-
See the [docs](https://docs.onkernel.com/quickstart) for information.
7+
See the [docs](https://onkernel.com/docs/quickstart) for information.

templates/python/computer-use/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies = [
99
"python-dateutil~=2.8.2",
1010
"pydantic~=2.11.5",
1111
"typing-extensions~=4.13.2",
12-
"kernel>=0.11.1",
12+
"kernel>=0.14.2",
1313
"python-dotenv~=1.0.0",
1414
"httpx~=0.27.0",
1515
]

templates/python/cua/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ This is a Kernel application that demonstrates using the Computer Using Agent (C
44

55
It generally follows the [OpenAI CUA Sample App Reference](https://github.com/openai/openai-cua-sample-app) and uses Playwright via Kernel for browser automation.
66

7-
See the [docs](https://docs.onkernel.com/quickstart) for more information.
7+
See the [docs](https://onkernel.com/docs/quickstart) for more information.

templates/python/cua/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies = [
1717
"idna==3.10",
1818
"jiter==0.10.0",
1919
"pillow==11.2.1",
20-
"kernel>=0.11.1",
20+
"kernel>=0.14.2",
2121
"playwright==1.52.0",
2222
"pydantic==2.11.7",
2323
"pydantic_core==2.33.2",

0 commit comments

Comments
 (0)