@aigne/cli 1.50.0 → 1.50.1-beta

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,27 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.50.1-beta](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.50.0...cli-v1.50.1-beta) (2025-10-07)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * standardize URL parameter naming from url to baseURL ([#593](https://github.com/AIGNE-io/aigne-framework/issues/593)) ([47efd4a](https://github.com/AIGNE-io/aigne-framework/commit/47efd4aad7130356a0c0bdf905acd8bc50453d26))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/agent-library bumped to 1.21.48-beta
16
+ * @aigne/agentic-memory bumped to 1.0.48-beta
17
+ * @aigne/aigne-hub bumped to 0.10.2-beta
18
+ * @aigne/core bumped to 1.63.0-beta
19
+ * @aigne/default-memory bumped to 1.2.11-beta
20
+ * @aigne/observability-api bumped to 0.11.2-beta
21
+ * @aigne/openai bumped to 0.16.2-beta
22
+ * devDependencies
23
+ * @aigne/test-utils bumped to 0.5.55-beta
24
+
3
25
  ## [1.50.0](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.50.0-beta.8...cli-v1.50.0) (2025-10-04)
4
26
 
5
27
 
@@ -70,6 +70,7 @@ export async function loadChatModel(options) {
70
70
  : undefined;
71
71
  return match.create({
72
72
  ...credential,
73
+ baseURL: credential?.url,
73
74
  model,
74
75
  modelOptions: options && omit(options, "model", "aigneHubUrl", "inquirerPromptFn"),
75
76
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/cli",
3
- "version": "1.50.0",
3
+ "version": "1.50.1-beta",
4
4
  "description": "Your command center for agent development",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -89,13 +89,13 @@
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.47",
93
- "@aigne/aigne-hub": "^0.10.1",
94
- "@aigne/default-memory": "^1.2.10",
95
- "@aigne/core": "^1.62.0",
96
- "@aigne/agentic-memory": "^1.0.47",
97
- "@aigne/observability-api": "^0.11.1",
98
- "@aigne/openai": "^0.16.1"
92
+ "@aigne/agent-library": "^1.21.48-beta",
93
+ "@aigne/agentic-memory": "^1.0.48-beta",
94
+ "@aigne/core": "^1.63.0-beta",
95
+ "@aigne/aigne-hub": "^0.10.2-beta",
96
+ "@aigne/default-memory": "^1.2.11-beta",
97
+ "@aigne/observability-api": "^0.11.2-beta",
98
+ "@aigne/openai": "^0.16.2-beta"
99
99
  },
100
100
  "devDependencies": {
101
101
  "@inquirer/testing": "^2.1.50",
@@ -112,7 +112,7 @@
112
112
  "rimraf": "^6.0.1",
113
113
  "typescript": "^5.9.2",
114
114
  "ufo": "^1.6.1",
115
- "@aigne/test-utils": "^0.5.54"
115
+ "@aigne/test-utils": "^0.5.55-beta"
116
116
  },
117
117
  "scripts": {
118
118
  "lint": "tsc --noEmit",