@aigne/example-workflow-sequential 1.15.3 → 1.17.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
@@ -129,7 +129,7 @@ echo "Create marketing content for our new AI-powered fitness app" | pnpm start
129
129
  The following example demonstrates how to build a sequential workflow:
130
130
 
131
131
  ```typescript
132
- import { AIAgent, AIGNE, TeamAgent, ProcessMode } from "@aigne/core";
132
+ import { AIAgent, AIGNE, ProcessMode, TeamAgent } from "@aigne/core";
133
133
  import { OpenAIChatModel } from "@aigne/core/models/openai-chat-model.js";
134
134
 
135
135
  const { OPENAI_API_KEY } = process.env;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/example-workflow-sequential",
3
- "version": "1.15.3",
3
+ "version": "1.17.0",
4
4
  "description": "A demonstration of using AIGNE Framework to build a sequential 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-sequential",
@@ -16,14 +16,14 @@
16
16
  "README.md"
17
17
  ],
18
18
  "dependencies": {
19
- "@aigne/agent-library": "^1.17.9",
20
- "@aigne/cli": "^1.20.1",
21
- "@aigne/core": "^1.29.1",
22
- "@aigne/openai": "^0.6.4"
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.16"
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",