PocketLang / flows /flow.json
acecalisto3's picture
Create flows/flow.json
f2d8451 verified
raw
history blame contribute delete
No virus
601 Bytes
{
"start": "BigAGIResolutionAgent",
"steps": [
{
"name": "Initialize IssueMemory",
"component": "IssueMemory"
},
{
"name": "User Input",
"component": "BigAGIResolutionAgent"
},
{
"name": "Process Input",
"component": "BigAGIResolutionAgent",
"condition": {
"Issue": "IssueResolutionChain",
"Feature": "FeatureImplementationChain"
}
},
{
"name": "Update IssueMemory",
"component": "IssueMemory"
},
{
"name": "Present Output",
"component": "BigAGIResolutionAgent"
}
]
}