acecalisto3 commited on
Commit
f2d8451
1 Parent(s): d5aaf91

Create flows/flow.json

Browse files
Files changed (1) hide show
  1. flows/flow.json +29 -0
flows/flow.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "start": "BigAGIResolutionAgent",
3
+ "steps": [
4
+ {
5
+ "name": "Initialize IssueMemory",
6
+ "component": "IssueMemory"
7
+ },
8
+ {
9
+ "name": "User Input",
10
+ "component": "BigAGIResolutionAgent"
11
+ },
12
+ {
13
+ "name": "Process Input",
14
+ "component": "BigAGIResolutionAgent",
15
+ "condition": {
16
+ "Issue": "IssueResolutionChain",
17
+ "Feature": "FeatureImplementationChain"
18
+ }
19
+ },
20
+ {
21
+ "name": "Update IssueMemory",
22
+ "component": "IssueMemory"
23
+ },
24
+ {
25
+ "name": "Present Output",
26
+ "component": "BigAGIResolutionAgent"
27
+ }
28
+ ]
29
+ }