File tree Expand file tree Collapse file tree 6 files changed +21
-7
lines changed Expand file tree Collapse file tree 6 files changed +21
-7
lines changed Original file line number Diff line number Diff line change 11{
2- "." : " 0.1.0-alpha.15 "
2+ "." : " 0.1.0"
33}
Original file line number Diff line number Diff line change 11configured_endpoints : 7
22openapi_spec_url : https://storage.googleapis.com/stainless-sdk-openapi-specs/kernel%2Fkernel-39aa058a60035c34a636e7f580b4b9c76b05400ae401ef04a761572b20a5425b.yml
33openapi_spec_hash : bb79a204f9edb6b6ccfe783a0a82a423
4- config_hash : 4dfa4d870ce0e23e31ce33ab6a53dd21
4+ config_hash : 5c90b7df80e8f222bb945b14b8d1fec0
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 0.1.0 (2025-05-21)
4+
5+ Full Changelog: [ v0.1.0-alpha.15...v0.1.0] ( https://github.com/onkernel/kernel-python-sdk/compare/v0.1.0-alpha.15...v0.1.0 )
6+
7+ ### Features
8+
9+ * ** api:** update via SDK Studio ([ 0950b19] ( https://github.com/onkernel/kernel-python-sdk/commit/0950b197ae15bd4f5feecaee80a8de3c54a1e900 ) )
10+
311## 0.1.0-alpha.15 (2025-05-20)
412
513Full Changelog: [ v0.1.0-alpha.14...v0.1.0-alpha.15] ( https://github.com/onkernel/kernel-python-sdk/compare/v0.1.0-alpha.14...v0.1.0-alpha.15 )
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ The REST API documentation can be found on [docs.onkernel.com](https://docs.onke
1616
1717``` sh
1818# install from PyPI
19- pip install --pre kernel
19+ pip install kernel
2020```
2121
2222## Usage
@@ -36,7 +36,10 @@ client = Kernel(
3636deployment = client.apps.deployments.create(
3737 entrypoint_rel_path = " main.ts" ,
3838 file = b " REPLACE_ME" ,
39- env_vars = {" OPENAI_API_KEY" : " x" },
39+ env_vars = {
40+ " OPENAI_API_KEY" : " x" ,
41+ " LOG_LEVEL" : " debug" ,
42+ },
4043 version = " 1.0.0" ,
4144)
4245print (deployment.apps)
@@ -67,7 +70,10 @@ async def main() -> None:
6770 deployment = await client.apps.deployments.create(
6871 entrypoint_rel_path = " main.ts" ,
6972 file = b " REPLACE_ME" ,
70- env_vars = {" OPENAI_API_KEY" : " x" },
73+ env_vars = {
74+ " OPENAI_API_KEY" : " x" ,
75+ " LOG_LEVEL" : " debug" ,
76+ },
7177 version = " 1.0.0" ,
7278 )
7379 print (deployment.apps)
Original file line number Diff line number Diff line change 11[project ]
22name = " kernel"
3- version = " 0.1.0-alpha.15 "
3+ version = " 0.1.0"
44description = " The official Python library for the kernel API"
55dynamic = [" readme" ]
66license = " Apache-2.0"
Original file line number Diff line number Diff line change 11# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22
33__title__ = "kernel"
4- __version__ = "0.1.0-alpha.15 " # x-release-please-version
4+ __version__ = "0.1.0" # x-release-please-version
You can’t perform that action at this time.
0 commit comments