Multi-Agent Pipeline Live

Stock Analyzer Data Ingestion Cathie Wood LLM Persona Warren Buffett LLM Persona Michael Burry LLM Persona Risk Manager Logic Gate Portfolio Mgr Execution
{
  "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" }
  ]
}
Hover over or click a node in the canvas to inspect its configuration and prompt.