@aigne/cli 1.52.1-beta.1 → 1.53.0-beta.1

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 CHANGED
@@ -1,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.53.0-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.52.1-beta.1...cli-v1.53.0-beta.1) (2025-10-24)
4
+
5
+
6
+ ### Features
7
+
8
+ * **model:** support video model ([#647](https://github.com/AIGNE-io/aigne-framework/issues/647)) ([de81742](https://github.com/AIGNE-io/aigne-framework/commit/de817421ef1dd3246d0d8c51ff12f0a855658f9f))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * load aigne hub api url for image model correctly ([#664](https://github.com/AIGNE-io/aigne-framework/issues/664)) ([c226b6a](https://github.com/AIGNE-io/aigne-framework/commit/c226b6adfa7acc162fdb2de385f2af57368e21ad))
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * The following workspace dependencies were updated
19
+ * dependencies
20
+ * @aigne/afs-system-fs bumped to 1.0.3-beta.1
21
+ * @aigne/agent-library bumped to 1.21.50-beta.1
22
+ * @aigne/agentic-memory bumped to 1.0.50-beta.1
23
+ * @aigne/aigne-hub bumped to 0.10.4-beta.2
24
+ * @aigne/core bumped to 1.65.0-beta
25
+ * @aigne/default-memory bumped to 1.2.13-beta.1
26
+ * @aigne/openai bumped to 0.16.4-beta.1
27
+ * devDependencies
28
+ * @aigne/test-utils bumped to 0.5.57-beta.1
29
+
3
30
  ## [1.52.1-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.52.1-beta...cli-v1.52.1-beta.1) (2025-10-24)
4
31
 
5
32
 
@@ -89,6 +89,7 @@ export async function loadImageModel(options) {
89
89
  : undefined;
90
90
  return match.create({
91
91
  ...credential,
92
+ baseURL: credential?.url,
92
93
  model,
93
94
  modelOptions: options && omit(options, "model", "aigneHubUrl", "inquirerPromptFn"),
94
95
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/cli",
3
- "version": "1.52.1-beta.1",
3
+ "version": "1.53.0-beta.1",
4
4
  "description": "Your command center for agent development",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -74,7 +74,7 @@
74
74
  "marked": "^16.3.0",
75
75
  "nunjucks": "^3.2.4",
76
76
  "open": "^10.2.0",
77
- "openai": "^5.20.3",
77
+ "openai": "^6.6.0",
78
78
  "p-wait-for": "^5.0.2",
79
79
  "prettier": "^3.6.2",
80
80
  "react": "^19.1.1",
@@ -89,14 +89,14 @@
89
89
  "yoctocolors-cjs": "^2.1.3",
90
90
  "zod": "^3.25.67",
91
91
  "zod-to-json-schema": "^3.24.6",
92
- "@aigne/agent-library": "^1.21.50-beta",
93
- "@aigne/afs-system-fs": "^1.0.3-beta",
94
- "@aigne/agentic-memory": "^1.0.50-beta",
95
- "@aigne/aigne-hub": "^0.10.4-beta.1",
96
- "@aigne/core": "^1.64.1-beta",
97
- "@aigne/default-memory": "^1.2.13-beta",
98
- "@aigne/openai": "^0.16.4-beta",
99
- "@aigne/observability-api": "^0.11.3"
92
+ "@aigne/afs-system-fs": "^1.0.3-beta.1",
93
+ "@aigne/agent-library": "^1.21.50-beta.1",
94
+ "@aigne/agentic-memory": "^1.0.50-beta.1",
95
+ "@aigne/aigne-hub": "^0.10.4-beta.2",
96
+ "@aigne/core": "^1.65.0-beta",
97
+ "@aigne/default-memory": "^1.2.13-beta.1",
98
+ "@aigne/observability-api": "^0.11.3",
99
+ "@aigne/openai": "^0.16.4-beta.1"
100
100
  },
101
101
  "devDependencies": {
102
102
  "@inquirer/testing": "^2.1.50",
@@ -114,7 +114,7 @@
114
114
  "rimraf": "^6.0.1",
115
115
  "typescript": "^5.9.2",
116
116
  "ufo": "^1.6.1",
117
- "@aigne/test-utils": "^0.5.57-beta"
117
+ "@aigne/test-utils": "^0.5.57-beta.1"
118
118
  },
119
119
  "scripts": {
120
120
  "lint": "tsc --noEmit",