Skip to content

Commit eee9154

Browse files
authored
bump versions (#4)
1 parent e769b31 commit eee9154

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

templates/python/browser-use/main.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111

1212
class TaskInput(TypedDict):
1313
task: str
14-
openai_api_key: str
1514

16-
# LLM API Keys are set in the environment during `kernel deploy <filename> --env OPENAI_API_KEY=XXX`
15+
# LLM API Keys are set in the environment during `kernel deploy <filename> -e OPENAI_API_KEY=XXX`
1716
# See https://docs.onkernel.com/launch/deploy#environment-variables
1817
llm = ChatOpenAI(model="gpt-4o")
1918

@@ -24,7 +23,7 @@ async def bu_task(ctx: kernel.KernelContext, input_data: TaskInput):
2423
2524
Args:
2625
ctx: Kernel context containing invocation information
27-
input_data: An object with task and openai_api_key properties
26+
input_data: An object with a BU task
2827
2928
Returns:
3029
An object with final_result and errors properties

templates/python/browser-use/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ readme = "README.md"
66
requires-python = ">=3.11"
77
dependencies = [
88
"browser-use>=0.1.46",
9-
"kernel==0.1.0a9",
9+
"kernel==0.1.0a15",
1010
"langchain-openai>=0.3.11",
1111
"pydantic>=2.10.6",
1212
]

templates/python/sample-app/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
description = "Kernel application template - Python"
55
readme = "README.md"
66
requires-python = ">=3.11"
7-
dependencies = ["kernel==0.1.0a9", "playwright>=1.52.0"]
7+
dependencies = ["kernel==0.1.0a15", "playwright>=1.52.0"]
88

99
[dependency-groups]
1010
dev = ["mypy>=1.15.0"]

templates/typescript/sample-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"typescript": "^5"
88
},
99
"dependencies": {
10-
"@onkernel/sdk": "0.1.0-alpha.12",
10+
"@onkernel/sdk": "0.1.0-alpha.16",
1111
"playwright": "^1.52.0"
1212
}
1313
}

0 commit comments

Comments
 (0)