@aigne/example-workflow-group-chat 1.12.1 → 1.13.1

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/README.md +2 -1
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -11,6 +11,7 @@ writer(Writer)
11
11
  editor(Editor)
12
12
  illustrator(Illustrator)
13
13
 
14
+ user --1 publish instruction--> manager
14
15
  manager ==2 request to speak==> writer
15
16
  manager --4 request to speak--> illustrator
16
17
 
@@ -32,7 +33,7 @@ class illustrator processing
32
33
 
33
34
  ## Prerequisites
34
35
 
35
- * [Node.js](https://nodejs.org) and npm installed on your machine
36
+ * [Node.js](https://nodejs.org) (>=20.0) and npm installed on your machine
36
37
  * An [OpenAI API key](https://platform.openai.com/api-keys) for interacting with OpenAI's services
37
38
  * Optional dependencies (if running the example from source code):
38
39
  * [Bun](https://bun.sh) for running unit tests & examples
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/example-workflow-group-chat",
3
- "version": "1.12.1",
3
+ "version": "1.13.1",
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.24.4",
20
- "@aigne/agent-library": "^1.17.6",
21
- "@aigne/cli": "^1.18.1",
22
- "@aigne/core": "^1.28.1",
23
- "@aigne/openai": "^0.6.1"
20
+ "@aigne/agent-library": "^1.17.7",
21
+ "@aigne/core": "^1.28.2",
22
+ "@aigne/openai": "^0.6.2",
23
+ "@aigne/cli": "^1.19.0"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@types/bun": "^1.2.9",
27
- "@aigne/test-utils": "^0.4.13"
27
+ "@aigne/test-utils": "^0.4.14"
28
28
  },
29
29
  "scripts": {
30
30
  "start": "bun run index.ts",