@aigne/example-workflow-orchestrator 1.14.1-beta.9 → 1.15.0-beta.9
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 +17 -0
- package/agents/orchestrator.yaml +3 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.15.0-beta.9](https://github.com/AIGNE-io/aigne-framework/compare/example-workflow-orchestrator-v1.14.1-beta.9...example-workflow-orchestrator-v1.15.0-beta.9) (2025-12-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **core:** add session history support ([#858](https://github.com/AIGNE-io/aigne-framework/issues/858)) ([28a070e](https://github.com/AIGNE-io/aigne-framework/commit/28a070ed33b821d1fd344b899706d817ca992b9f))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Dependencies
|
|
12
|
+
|
|
13
|
+
* The following workspace dependencies were updated
|
|
14
|
+
* dependencies
|
|
15
|
+
* @aigne/agent-library bumped to 1.24.0-beta.8
|
|
16
|
+
* @aigne/cli bumped to 1.59.0-beta.9
|
|
17
|
+
* devDependencies
|
|
18
|
+
* @aigne/test-utils bumped to 0.5.69-beta.7
|
|
19
|
+
|
|
3
20
|
## [1.14.1-beta.9](https://github.com/AIGNE-io/aigne-framework/compare/example-workflow-orchestrator-v1.14.1-beta.8...example-workflow-orchestrator-v1.14.1-beta.9) (2025-12-25)
|
|
4
21
|
|
|
5
22
|
|
package/agents/orchestrator.yaml
CHANGED
|
@@ -35,6 +35,9 @@ state_management:
|
|
|
35
35
|
max_tokens: 100000 # Optional: limit the total tokens used for state management
|
|
36
36
|
keep_recent: 20 # Optional: keep only the most recent N states in memory
|
|
37
37
|
|
|
38
|
+
history_config:
|
|
39
|
+
record: true
|
|
40
|
+
|
|
38
41
|
afs:
|
|
39
42
|
modules:
|
|
40
43
|
- module: history
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/example-workflow-orchestrator",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.0-beta.9",
|
|
4
4
|
"description": "A demonstration of using AIGNE Framework to build a orchestrator workflow",
|
|
5
5
|
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
|
|
6
6
|
"homepage": "https://github.com/AIGNE-io/aigne-framework/tree/main/examples/workflow-orchestrator",
|
|
@@ -11,12 +11,12 @@
|
|
|
11
11
|
},
|
|
12
12
|
"bin": "aigne.yaml",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@aigne/agent-library": "^1.24.0-beta.
|
|
15
|
-
"@aigne/cli": "^1.59.0-beta.
|
|
14
|
+
"@aigne/agent-library": "^1.24.0-beta.8",
|
|
15
|
+
"@aigne/cli": "^1.59.0-beta.9"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@types/bun": "^1.2.22",
|
|
19
|
-
"@aigne/test-utils": "^0.5.69-beta.
|
|
19
|
+
"@aigne/test-utils": "^0.5.69-beta.7"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|
|
22
22
|
"start": "aigne run ."
|