@aigne/openai 0.16.1-beta.4 → 0.16.1-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/lib/cjs/openai-chat-model.js +1 -1
- package/lib/esm/openai-chat-model.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.16.1-beta.6](https://github.com/AIGNE-io/aigne-framework/compare/openai-v0.16.1-beta.5...openai-v0.16.1-beta.6) (2025-10-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Dependencies
|
|
7
|
+
|
|
8
|
+
* The following workspace dependencies were updated
|
|
9
|
+
* dependencies
|
|
10
|
+
* @aigne/core bumped to 1.62.0-beta.5
|
|
11
|
+
* devDependencies
|
|
12
|
+
* @aigne/test-utils bumped to 0.5.54-beta.6
|
|
13
|
+
|
|
14
|
+
## [0.16.1-beta.5](https://github.com/AIGNE-io/aigne-framework/compare/openai-v0.16.1-beta.4...openai-v0.16.1-beta.5) (2025-10-01)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* update deps compatibility in CommonJS environment ([#580](https://github.com/AIGNE-io/aigne-framework/issues/580)) ([a1e35d0](https://github.com/AIGNE-io/aigne-framework/commit/a1e35d016405accb51c1aeb6a544503a1c78e912))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Dependencies
|
|
23
|
+
|
|
24
|
+
* The following workspace dependencies were updated
|
|
25
|
+
* dependencies
|
|
26
|
+
* @aigne/core bumped to 1.62.0-beta.4
|
|
27
|
+
* devDependencies
|
|
28
|
+
* @aigne/test-utils bumped to 0.5.54-beta.5
|
|
29
|
+
|
|
3
30
|
## [0.16.1-beta.4](https://github.com/AIGNE-io/aigne-framework/compare/openai-v0.16.1-beta.3...openai-v0.16.1-beta.4) (2025-10-01)
|
|
4
31
|
|
|
5
32
|
|
|
@@ -9,7 +9,7 @@ const model_utils_js_1 = require("@aigne/core/utils/model-utils.js");
|
|
|
9
9
|
const prompts_js_1 = require("@aigne/core/utils/prompts.js");
|
|
10
10
|
const stream_utils_js_1 = require("@aigne/core/utils/stream-utils.js");
|
|
11
11
|
const type_utils_js_1 = require("@aigne/core/utils/type-utils.js");
|
|
12
|
-
const uuid_1 = require("uuid");
|
|
12
|
+
const uuid_1 = require("@aigne/uuid");
|
|
13
13
|
const zod_1 = require("zod");
|
|
14
14
|
const openai_js_1 = require("./openai.js");
|
|
15
15
|
const CHAT_MODEL_OPENAI_DEFAULT_MODEL = "gpt-4o-mini";
|
|
@@ -4,7 +4,7 @@ import { mergeUsage } from "@aigne/core/utils/model-utils.js";
|
|
|
4
4
|
import { getJsonOutputPrompt } from "@aigne/core/utils/prompts.js";
|
|
5
5
|
import { agentResponseStreamToObject } from "@aigne/core/utils/stream-utils.js";
|
|
6
6
|
import { checkArguments, isNonNullable, } from "@aigne/core/utils/type-utils.js";
|
|
7
|
-
import { v7 } from "uuid";
|
|
7
|
+
import { v7 } from "@aigne/uuid";
|
|
8
8
|
import { z } from "zod";
|
|
9
9
|
import { CustomOpenAI } from "./openai.js";
|
|
10
10
|
const CHAT_MODEL_OPENAI_DEFAULT_MODEL = "gpt-4o-mini";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/openai",
|
|
3
|
-
"version": "0.16.1-beta.
|
|
3
|
+
"version": "0.16.1-beta.6",
|
|
4
4
|
"description": "AIGNE OpenAI SDK for integrating with OpenAI's GPT models and API services",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -35,11 +35,11 @@
|
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
+
"@aigne/uuid": "^13.0.1",
|
|
38
39
|
"openai": "^5.20.3",
|
|
39
|
-
"uuid": "^13.0.0",
|
|
40
40
|
"zod": "^3.25.67",
|
|
41
|
-
"@aigne/
|
|
42
|
-
"@aigne/
|
|
41
|
+
"@aigne/platform-helpers": "^0.6.3",
|
|
42
|
+
"@aigne/core": "^1.62.0-beta.5"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/bun": "^1.2.22",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"npm-run-all": "^4.1.5",
|
|
48
48
|
"rimraf": "^6.0.1",
|
|
49
49
|
"typescript": "^5.9.2",
|
|
50
|
-
"@aigne/test-utils": "^0.5.54-beta.
|
|
50
|
+
"@aigne/test-utils": "^0.5.54-beta.6"
|
|
51
51
|
},
|
|
52
52
|
"scripts": {
|
|
53
53
|
"lint": "tsc --noEmit",
|