{ | |
"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" | |
} |