@aigne/example-workflow-sequential 1.15.3 → 1.17.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.
- package/README.md +1 -1
- 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,
|
|
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.
|
|
3
|
+
"version": "1.17.1",
|
|
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.
|
|
20
|
-
"@aigne/cli": "^1.
|
|
21
|
-
"@aigne/core": "^1.
|
|
22
|
-
"@aigne/openai": "^0.
|
|
19
|
+
"@aigne/agent-library": "^1.20.0",
|
|
20
|
+
"@aigne/cli": "^1.22.1",
|
|
21
|
+
"@aigne/core": "^1.32.0",
|
|
22
|
+
"@aigne/openai": "^0.8.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@types/bun": "^1.2.
|
|
26
|
-
"@aigne/test-utils": "^0.
|
|
25
|
+
"@types/bun": "^1.2.17",
|
|
26
|
+
"@aigne/test-utils": "^0.5.2"
|
|
27
27
|
},
|
|
28
28
|
"scripts": {
|
|
29
29
|
"start": "bun run index.ts",
|