@aigne/cli 1.36.3 → 1.36.4
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 +19 -0
- package/dist/utils/load-aigne.js +3 -3
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.36.4](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.36.3...cli-v1.36.4) (2025-08-16)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **core:** make getCredential async for aigne-hub mount point retrieval ([#372](https://github.com/AIGNE-io/aigne-framework/issues/372)) ([34ce7a6](https://github.com/AIGNE-io/aigne-framework/commit/34ce7a645fa83994d3dfe0f29ca70098cfecac9c))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/agent-library bumped to 1.21.21
|
|
16
|
+
* @aigne/agentic-memory bumped to 1.0.21
|
|
17
|
+
* @aigne/aigne-hub bumped to 0.6.3
|
|
18
|
+
* @aigne/core bumped to 1.50.1
|
|
19
|
+
* @aigne/default-memory bumped to 1.1.3
|
|
20
|
+
* @aigne/openai bumped to 0.11.3
|
|
21
|
+
|
|
3
22
|
## [1.36.3](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.36.2...cli-v1.36.3) (2025-08-15)
|
|
4
23
|
|
|
5
24
|
|
package/dist/utils/load-aigne.js
CHANGED
|
@@ -14,11 +14,11 @@ import { getUrlOrigin } from "./get-url-origin.js";
|
|
|
14
14
|
const isTest = process.env.CI || process.env.NODE_ENV === "test";
|
|
15
15
|
const mockInquirerPrompt = (() => Promise.resolve({ useAigneHub: true }));
|
|
16
16
|
let printed = false;
|
|
17
|
-
function printChatModelInfoBox(model) {
|
|
17
|
+
async function printChatModelInfoBox(model) {
|
|
18
18
|
if (printed)
|
|
19
19
|
return;
|
|
20
20
|
printed = true;
|
|
21
|
-
const credential = model.getCredential();
|
|
21
|
+
const credential = await model.getCredential();
|
|
22
22
|
const lines = [`${chalk.cyan("Provider")}: ${chalk.green(model.name.replace("ChatModel", ""))}`];
|
|
23
23
|
if (credential?.model) {
|
|
24
24
|
lines.push(`${chalk.cyan("Model")}: ${chalk.green(credential?.model)}`);
|
|
@@ -71,7 +71,7 @@ export async function loadAIGNE({ path, options, modelOptions, actionOptions, })
|
|
|
71
71
|
frequencyPenalty,
|
|
72
72
|
}, modelOptions, { aigneHubUrl: AIGNE_HUB_URL, inquirerPromptFn: actionOptions?.inquirerPromptFn });
|
|
73
73
|
if (model) {
|
|
74
|
-
printChatModelInfoBox(model);
|
|
74
|
+
await printChatModelInfoBox(model);
|
|
75
75
|
}
|
|
76
76
|
if (path) {
|
|
77
77
|
return await AIGNE.load(path, { loadModel, memories: availableMemories, model });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/cli",
|
|
3
|
-
"version": "1.36.
|
|
3
|
+
"version": "1.36.4",
|
|
4
4
|
"description": "Your command center for agent development",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -72,13 +72,13 @@
|
|
|
72
72
|
"yaml": "^2.8.0",
|
|
73
73
|
"yargs": "^18.0.0",
|
|
74
74
|
"zod": "^3.25.67",
|
|
75
|
-
"@aigne/agent-library": "^1.21.
|
|
76
|
-
"@aigne/
|
|
77
|
-
"@aigne/
|
|
78
|
-
"@aigne/
|
|
79
|
-
"@aigne/
|
|
80
|
-
"@aigne/
|
|
81
|
-
"@aigne/
|
|
75
|
+
"@aigne/agent-library": "^1.21.21",
|
|
76
|
+
"@aigne/aigne-hub": "^0.6.3",
|
|
77
|
+
"@aigne/agentic-memory": "^1.0.21",
|
|
78
|
+
"@aigne/core": "^1.50.1",
|
|
79
|
+
"@aigne/default-memory": "^1.1.3",
|
|
80
|
+
"@aigne/openai": "^0.11.3",
|
|
81
|
+
"@aigne/observability-api": "^0.9.0"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
84
|
"@types/archiver": "^6.0.3",
|