{
"pipeline": "Multi-Agent Investment Committee",
"version": "1.0.0",
"nodes": [
{ "id": "analyzer", "type": "data_ingestion", "source": "market_api" },
{ "id": "cathie", "type": "llm_agent", "model": "gpt-4", "persona": "growth" },
{ "id": "warren", "type": "llm_agent", "model": "gpt-4", "persona": "value" },
{ "id": "burry", "type": "llm_agent", "model": "gpt-4", "persona": "contrarian" },
{ "id": "risk", "type": "logic_aggregator", "rule": "consensus_with_var" },
{ "id": "portfolio", "type": "execution", "action": "generate_orders" }
],
"edges": [
{ "from": "analyzer", "to": ["cathie", "warren", "burry"] },
{ "from": ["cathie", "warren", "burry"], "to": "risk" },
{ "from": "risk", "to": "portfolio" }
]
}