@aigne/cli 1.50.0-beta.4 → 1.50.0-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 +39 -0
- package/dist/utils/run-chat-loop.js +1 -1
- package/dist/utils/yargs.js +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.50.0-beta.6](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.50.0-beta.5...cli-v1.50.0-beta.6) (2025-10-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* 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))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/agent-library bumped to 1.21.47-beta.5
|
|
16
|
+
* @aigne/agentic-memory bumped to 1.0.47-beta.5
|
|
17
|
+
* @aigne/aigne-hub bumped to 0.10.1-beta.5
|
|
18
|
+
* @aigne/core bumped to 1.62.0-beta.4
|
|
19
|
+
* @aigne/default-memory bumped to 1.2.10-beta.5
|
|
20
|
+
* @aigne/observability-api bumped to 0.11.1-beta.2
|
|
21
|
+
* @aigne/openai bumped to 0.16.1-beta.5
|
|
22
|
+
* devDependencies
|
|
23
|
+
* @aigne/test-utils bumped to 0.5.54-beta.5
|
|
24
|
+
|
|
25
|
+
## [1.50.0-beta.5](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.50.0-beta.4...cli-v1.50.0-beta.5) (2025-10-01)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Dependencies
|
|
29
|
+
|
|
30
|
+
* The following workspace dependencies were updated
|
|
31
|
+
* dependencies
|
|
32
|
+
* @aigne/agent-library bumped to 1.21.47-beta.4
|
|
33
|
+
* @aigne/agentic-memory bumped to 1.0.47-beta.4
|
|
34
|
+
* @aigne/aigne-hub bumped to 0.10.1-beta.4
|
|
35
|
+
* @aigne/core bumped to 1.62.0-beta.3
|
|
36
|
+
* @aigne/default-memory bumped to 1.2.10-beta.4
|
|
37
|
+
* @aigne/observability-api bumped to 0.11.1-beta.1
|
|
38
|
+
* @aigne/openai bumped to 0.16.1-beta.4
|
|
39
|
+
* devDependencies
|
|
40
|
+
* @aigne/test-utils bumped to 0.5.54-beta.4
|
|
41
|
+
|
|
3
42
|
## [1.50.0-beta.4](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.50.0-beta.3...cli-v1.50.0-beta.4) (2025-10-01)
|
|
4
43
|
|
|
5
44
|
|
|
@@ -61,7 +61,7 @@ async function extractFilesFromQuestion(question) {
|
|
|
61
61
|
return;
|
|
62
62
|
return {
|
|
63
63
|
path,
|
|
64
|
-
file: { type: "file", data, filename, mimeType: ChatModel.getMimeType(filename) },
|
|
64
|
+
file: { type: "file", data, filename, mimeType: await ChatModel.getMimeType(filename) },
|
|
65
65
|
};
|
|
66
66
|
}))).filter(isNonNullable);
|
|
67
67
|
// Remove file paths from question
|
package/dist/utils/yargs.js
CHANGED
|
@@ -152,7 +152,7 @@ export async function parseAgentInput(i, agent) {
|
|
|
152
152
|
for (const file of i.inputFile ?? []) {
|
|
153
153
|
const raw = await readFile(file.replace(/^@/, ""), "base64");
|
|
154
154
|
const filename = basename(file);
|
|
155
|
-
const mimeType = ChatModel.getMimeType(filename) || "application/octet-stream";
|
|
155
|
+
const mimeType = (await ChatModel.getMimeType(filename)) || "application/octet-stream";
|
|
156
156
|
files.push({ type: "file", data: raw, filename, mimeType });
|
|
157
157
|
}
|
|
158
158
|
Object.assign(input, { [agent.inputFileKey]: files });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/cli",
|
|
3
|
-
"version": "1.50.0-beta.
|
|
3
|
+
"version": "1.50.0-beta.6",
|
|
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/
|
|
93
|
-
"@aigne/
|
|
94
|
-
"@aigne/
|
|
95
|
-
"@aigne/default-memory": "^1.2.10-beta.
|
|
96
|
-
"@aigne/
|
|
97
|
-
"@aigne/observability-api": "^0.11.1-beta",
|
|
98
|
-
"@aigne/openai": "^0.16.1-beta.
|
|
92
|
+
"@aigne/agentic-memory": "^1.0.47-beta.5",
|
|
93
|
+
"@aigne/agent-library": "^1.21.47-beta.5",
|
|
94
|
+
"@aigne/core": "^1.62.0-beta.4",
|
|
95
|
+
"@aigne/default-memory": "^1.2.10-beta.5",
|
|
96
|
+
"@aigne/aigne-hub": "^0.10.1-beta.5",
|
|
97
|
+
"@aigne/observability-api": "^0.11.1-beta.2",
|
|
98
|
+
"@aigne/openai": "^0.16.1-beta.5"
|
|
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-beta.
|
|
115
|
+
"@aigne/test-utils": "^0.5.54-beta.5"
|
|
116
116
|
},
|
|
117
117
|
"scripts": {
|
|
118
118
|
"lint": "tsc --noEmit",
|