@aigne/cli 1.58.1-beta.2 → 1.59.0-beta.2
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 +24 -0
- package/dist/tracer/terminal.js +11 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.59.0-beta.2](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.58.1-beta.2...cli-v1.59.0-beta.2) (2025-12-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add prompt caching for OpenAI/Gemini/Anthropic and cache token display ([#838](https://github.com/AIGNE-io/aigne-framework/issues/838)) ([46c628f](https://github.com/AIGNE-io/aigne-framework/commit/46c628f180572ea1b955d1a9888aad6145204842))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/afs-local-fs bumped to 1.4.0-beta.3
|
|
16
|
+
* @aigne/agent-library bumped to 1.24.0-beta.3
|
|
17
|
+
* @aigne/agentic-memory bumped to 1.1.6-beta.3
|
|
18
|
+
* @aigne/aigne-hub bumped to 0.10.16-beta.3
|
|
19
|
+
* @aigne/core bumped to 1.72.0-beta.3
|
|
20
|
+
* @aigne/default-memory bumped to 1.3.6-beta.3
|
|
21
|
+
* @aigne/observability-api bumped to 0.11.14-beta.1
|
|
22
|
+
* @aigne/openai bumped to 0.16.16-beta.3
|
|
23
|
+
* @aigne/secrets bumped to 0.1.6-beta.3
|
|
24
|
+
* devDependencies
|
|
25
|
+
* @aigne/test-utils bumped to 0.5.69-beta.3
|
|
26
|
+
|
|
3
27
|
## [1.58.1-beta.2](https://github.com/AIGNE-io/aigne-framework/compare/cli-v1.58.1-beta.1...cli-v1.58.1-beta.2) (2025-12-19)
|
|
4
28
|
|
|
5
29
|
|
package/dist/tracer/terminal.js
CHANGED
|
@@ -118,7 +118,11 @@ export class TerminalTracer {
|
|
|
118
118
|
taskWrapper.title = await this.formatTaskTitle(task.agent, {
|
|
119
119
|
input: task.input,
|
|
120
120
|
task,
|
|
121
|
-
usage: Boolean(task.usage.inputTokens ||
|
|
121
|
+
usage: Boolean(task.usage.inputTokens ||
|
|
122
|
+
task.usage.outputTokens ||
|
|
123
|
+
task.usage.aigneHubCredits ||
|
|
124
|
+
task.usage.cacheCreationInputTokens ||
|
|
125
|
+
task.usage.cacheReadInputTokens),
|
|
122
126
|
time: context.id === collapsed.ancestor.contextId,
|
|
123
127
|
});
|
|
124
128
|
if (context.id === collapsed.ancestor.contextId) {
|
|
@@ -255,6 +259,12 @@ export class TerminalTracer {
|
|
|
255
259
|
formatTokenUsage(usage, extra) {
|
|
256
260
|
const items = [
|
|
257
261
|
[chalk.yellow(usage.inputTokens), chalk.grey("input tokens")],
|
|
262
|
+
usage.cacheReadInputTokens
|
|
263
|
+
? [chalk.green(usage.cacheReadInputTokens), chalk.grey("cached")]
|
|
264
|
+
: undefined,
|
|
265
|
+
usage.cacheCreationInputTokens
|
|
266
|
+
? [chalk.yellow(usage.cacheCreationInputTokens), chalk.grey("cache write")]
|
|
267
|
+
: undefined,
|
|
258
268
|
[chalk.cyan(usage.outputTokens), chalk.grey("output tokens")],
|
|
259
269
|
usage.aigneHubCredits
|
|
260
270
|
? this.formatAigneHubCredits(usage.aigneHubCredits, usage.creditPrefix)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.59.0-beta.2",
|
|
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": "^6.
|
|
77
|
+
"openai": "^6.14.0",
|
|
78
78
|
"p-wait-for": "^5.0.2",
|
|
79
79
|
"prettier": "^3.6.2",
|
|
80
80
|
"react": "^19.1.1",
|
|
@@ -90,16 +90,16 @@
|
|
|
90
90
|
"zod": "^3.25.67",
|
|
91
91
|
"zod-to-json-schema": "^3.24.6",
|
|
92
92
|
"@aigne/afs": "^1.4.0-beta.2",
|
|
93
|
+
"@aigne/afs-local-fs": "^1.4.0-beta.3",
|
|
93
94
|
"@aigne/afs-history": "^1.2.0-beta.2",
|
|
94
|
-
"@aigne/
|
|
95
|
-
"@aigne/agentic-memory": "^1.1.6-beta.
|
|
96
|
-
"@aigne/
|
|
97
|
-
"@aigne/
|
|
98
|
-
"@aigne/
|
|
99
|
-
"@aigne/
|
|
100
|
-
"@aigne/openai": "^0.16.16-beta.
|
|
101
|
-
"@aigne/secrets": "^0.1.6-beta.
|
|
102
|
-
"@aigne/observability-api": "^0.11.14-beta"
|
|
95
|
+
"@aigne/agent-library": "^1.24.0-beta.3",
|
|
96
|
+
"@aigne/agentic-memory": "^1.1.6-beta.3",
|
|
97
|
+
"@aigne/core": "^1.72.0-beta.3",
|
|
98
|
+
"@aigne/default-memory": "^1.3.6-beta.3",
|
|
99
|
+
"@aigne/aigne-hub": "^0.10.16-beta.3",
|
|
100
|
+
"@aigne/observability-api": "^0.11.14-beta.1",
|
|
101
|
+
"@aigne/openai": "^0.16.16-beta.3",
|
|
102
|
+
"@aigne/secrets": "^0.1.6-beta.3"
|
|
103
103
|
},
|
|
104
104
|
"devDependencies": {
|
|
105
105
|
"@inquirer/testing": "^2.1.50",
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
"rimraf": "^6.0.1",
|
|
117
117
|
"typescript": "^5.9.2",
|
|
118
118
|
"ufo": "^1.6.1",
|
|
119
|
-
"@aigne/test-utils": "^0.5.69-beta.
|
|
119
|
+
"@aigne/test-utils": "^0.5.69-beta.3"
|
|
120
120
|
},
|
|
121
121
|
"scripts": {
|
|
122
122
|
"lint": "tsc --noEmit",
|