@aigne/example-workflow-concurrency 1.16.1 → 1.16.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.
Files changed (2) hide show
  1. package/index.test.ts +2 -2
  2. package/package.json +6 -6
package/index.test.ts CHANGED
@@ -4,8 +4,8 @@ import { runExampleTest } from "@aigne/test-utils/run-example-test.js";
4
4
  test(
5
5
  "should successfully run the workflow-concurrency",
6
6
  async () => {
7
- const { code } = await runExampleTest();
8
- expect(code).toBe(0);
7
+ const { status } = await runExampleTest();
8
+ expect(status).toBe(0);
9
9
  },
10
10
  { timeout: 600000 },
11
11
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/example-workflow-concurrency",
3
- "version": "1.16.1",
3
+ "version": "1.16.2",
4
4
  "description": "A demonstration of using AIGNE Framework to build a concurrency 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-concurrency",
@@ -16,14 +16,14 @@
16
16
  "README.md"
17
17
  ],
18
18
  "dependencies": {
19
- "@aigne/agent-library": "^1.20.0",
20
- "@aigne/cli": "^1.22.1",
21
- "@aigne/openai": "^0.8.0",
22
- "@aigne/core": "^1.32.0"
19
+ "@aigne/agent-library": "^1.20.1",
20
+ "@aigne/cli": "^1.22.2",
21
+ "@aigne/core": "^1.32.1",
22
+ "@aigne/openai": "^0.8.1"
23
23
  },
24
24
  "devDependencies": {
25
25
  "@types/bun": "^1.2.17",
26
- "@aigne/test-utils": "^0.5.2"
26
+ "@aigne/test-utils": "^0.5.3"
27
27
  },
28
28
  "scripts": {
29
29
  "start": "bun run index.ts",