@aigne/example-workflow-reflection 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 +19 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -2,6 +2,25 @@
2
2
 
3
3
  This is a demonstration of using [AIGNE Framework](https://github.com/AIGNE-io/aigne-framework) to build a reflection workflow.
4
4
 
5
+ ```mermaid
6
+ flowchart LR
7
+ in(In)
8
+ out(Out)
9
+ coder(Coder)
10
+ reviewer(Reviewer)
11
+
12
+ in --Ideas--> coder ==Solution==> reviewer --Approved--> out
13
+ reviewer ==Rejected==> coder
14
+
15
+ classDef inputOutput fill:#f9f0ed,stroke:#debbae,stroke-width:2px,color:#b35b39,font-weight:bolder;
16
+ classDef processing fill:#F0F4EB,stroke:#C2D7A7,stroke-width:2px,color:#6B8F3C,font-weight:bolder;
17
+
18
+ class in inputOutput
19
+ class out inputOutput
20
+ class coder processing
21
+ class reviewer processing
22
+ ```
23
+
5
24
  ## Prerequisites
6
25
 
7
26
  - [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-reflection",
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 reflection 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-reflection",
@@ -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"