@aigne/example-workflow-group-chat 1.15.3 → 1.15.5

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.
Files changed (2) hide show
  1. package/index.ts +5 -0
  2. package/package.json +6 -6
package/index.ts CHANGED
@@ -106,6 +106,11 @@ const user = UserAgent.from({
106
106
  },
107
107
  ]);
108
108
  isFirstQuestion = false;
109
+
110
+ if (question === "/exit") {
111
+ process.exit(0);
112
+ }
113
+
109
114
  return { message: question };
110
115
  },
111
116
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/example-workflow-group-chat",
3
- "version": "1.15.3",
3
+ "version": "1.15.5",
4
4
  "description": "A demonstration of using AIGNE Framework to build a group chat 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-group-chat",
@@ -17,14 +17,14 @@
17
17
  ],
18
18
  "dependencies": {
19
19
  "zod": "^3.25.67",
20
- "@aigne/agent-library": "^1.20.2",
21
- "@aigne/cli": "^1.22.4",
22
- "@aigne/core": "^1.32.2",
23
- "@aigne/openai": "^0.8.2"
20
+ "@aigne/agent-library": "^1.20.3",
21
+ "@aigne/core": "^1.33.0",
22
+ "@aigne/cli": "^1.22.6",
23
+ "@aigne/openai": "^0.9.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/bun": "^1.2.17",
27
- "@aigne/test-utils": "^0.5.4"
27
+ "@aigne/test-utils": "^0.5.5"
28
28
  },
29
29
  "scripts": {
30
30
  "start": "bun run index.ts",