AICEO / langgraph_config.json
mgbam's picture
πŸ” Add AutoExec AI full application files for Hugging Face Space
c9c8879
raw
history blame
935 Bytes
{
"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"
}