Skip to content

Commit e036454

Browse files
authored
Merge pull request #61 from ghost-in-moss/version/0.1.6
fix: fix wrong version of openai package and remove invalid log
2 parents 2dbeb11 + 739de3f commit e036454

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

RELEASES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# Releases
22

3-
43
# v0.1.0
54

65
first release version.
76

7+
## v0.1.6
8+
9+
* upgrade openai package to 1.59, support develop message.
10+
* fix invalid logger print azure api key.
11+
812
## v0.1.5
913

1014
* `ghostos web` add `--src` option, load the directory to python path, make sure can import relative packages.

ghostos/framework/llms/openai_driver.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ def __init__(
8989
if service_conf.proxy:
9090
transport = SyncProxyTransport.from_url(service_conf.proxy)
9191
http_client = Client(transport=transport)
92-
self._logger.error(f"\n[service_conf] {service_conf.azure.api_key}")
9392
if service_conf.azure.api_key:
9493
self._client = AzureOpenAI(
9594
azure_endpoint=service_conf.base_url,

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "ghostos"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
description = "A framework offers an operating system simulator with a Python Code Interface for AI Agents"
55
authors = ["zhuming <thirdgerb@gmail.com>", "Nile Zhou <nilezhou123@gmail.com>"]
66
license = "MIT"
@@ -15,7 +15,7 @@ Issues = "https://github.com/ghost-in-moss/GhostOS/issues"
1515
[tool.poetry.dependencies]
1616
python = ">=3.10,<3.14"
1717
pydantic = "^2.7.0"
18-
openai = "^1.19.0"
18+
openai = "^1.59.0"
1919
pyyaml = "^6.0.1"
2020
rich = "^13.7.1"
2121
httpx-socks = "^0.9.1"

0 commit comments

Comments
 (0)