File size: 935 Bytes
c9c8879 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
{
"nodes": {
"StrategyAgent": {
"type": "llm-tool",
"tool": "agents.strategy_agent.run_strategy",
"inputs": [
"niche",
"business_type"
]
},
"CopyAgent": {
"type": "llm-tool",
"tool": "agents.copy_agent.generate_copy",
"inputs": [
"StrategyAgent"
]
},
"AdAgent": {
"type": "llm-tool",
"tool": "agents.ad_agent.plan_ads",
"inputs": [
"StrategyAgent"
]
},
"LoopAgent": {
"type": "rule-engine",
"tool": "agents.loop_agent.optimize",
"inputs": [
"AdAgent",
"CopyAgent"
]
}
},
"edges": [
[
"StrategyAgent",
"CopyAgent"
],
[
"StrategyAgent",
"AdAgent"
],
[
"AdAgent",
"LoopAgent"
],
[
"CopyAgent",
"LoopAgent"
]
],
"entry_point": "StrategyAgent",
"exit_point": "LoopAgent"
} |