@aigne/example-workflow-concurrency 1.14.2 → 1.16.0

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 +1 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -131,7 +131,7 @@ echo "Analyze product: Smart home assistant with voice control and AI learning c
131
131
  The following example demonstrates how to build a concurrency workflow:
132
132
 
133
133
  ```typescript
134
- import { AIAgent, AIGNE, TeamAgent, ProcessMode } from "@aigne/core";
134
+ import { AIAgent, AIGNE, ProcessMode, TeamAgent } from "@aigne/core";
135
135
  import { OpenAIChatModel } from "@aigne/core/models/openai-chat-model.js";
136
136
 
137
137
  const { OPENAI_API_KEY } = process.env;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/example-workflow-concurrency",
3
- "version": "1.14.2",
3
+ "version": "1.16.0",
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.17.8",
20
- "@aigne/cli": "^1.20.0",
21
- "@aigne/openai": "^0.6.3",
22
- "@aigne/core": "^1.29.0"
19
+ "@aigne/agent-library": "^1.19.0",
20
+ "@aigne/cli": "^1.22.0",
21
+ "@aigne/core": "^1.31.0",
22
+ "@aigne/openai": "^0.7.1"
23
23
  },
24
24
  "devDependencies": {
25
- "@types/bun": "^1.2.9",
26
- "@aigne/test-utils": "^0.4.15"
25
+ "@types/bun": "^1.2.17",
26
+ "@aigne/test-utils": "^0.5.1"
27
27
  },
28
28
  "scripts": {
29
29
  "start": "bun run index.ts",