@aigne/example-workflow-concurrency 1.1.0-beta.12 → 1.1.0-beta.14

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 +22 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,6 +2,28 @@
2
2
 
3
3
  This is a demonstration of using [AIGNE Framework](https://github.com/AIGNE-io/aigne-framework) to build a concurrency workflow.
4
4
 
5
+ ```mermaid
6
+ flowchart LR
7
+ in(In)
8
+ out(Out)
9
+ featureExtractor(Feature Extractor)
10
+ audienceAnalyzer(Audience Analyzer)
11
+ aggregator(Aggregator)
12
+
13
+ in --> featureExtractor --> aggregator
14
+ in --> audienceAnalyzer --> aggregator
15
+ aggregator --> out
16
+
17
+ classDef inputOutput fill:#f9f0ed,stroke:#debbae,stroke-width:2px,color:#b35b39,font-weight:bolder;
18
+ classDef processing fill:#F0F4EB,stroke:#C2D7A7,stroke-width:2px,color:#6B8F3C,font-weight:bolder;
19
+
20
+ class in inputOutput
21
+ class out inputOutput
22
+ class featureExtractor processing
23
+ class audienceAnalyzer processing
24
+ class aggregator processing
25
+ ```
26
+
5
27
  ## Prerequisites
6
28
 
7
29
  - [Node.js](https://nodejs.org) and npm installed on your machine
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/example-workflow-concurrency",
3
- "version": "1.1.0-beta.12",
3
+ "version": "1.1.0-beta.14",
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",
@@ -17,7 +17,7 @@
17
17
  ],
18
18
  "dependencies": {
19
19
  "zod": "^3.24.2",
20
- "@aigne/core-next": "^1.1.0-beta.12"
20
+ "@aigne/core-next": "^1.1.0-beta.14"
21
21
  },
22
22
  "scripts": {
23
23
  "start": "npx -y bun run index.ts"