A multi-agent AI pipeline built in Python. Three specialised agents chain together to take a high-level goal and produce an actionable output.
Goal → Macro Agent → Quantum Agent → Micro Agent → Output
- Macro Agent — breaks the goal into a strategic plan
- Quantum Agent — generates a creative, lateral idea from the plan
- Micro Agent — executes the idea into a concrete action
- Python 3
- OpenAI API (integration in progress)
- NumPy
lae-engine/ ├── agents/ │ ├── macro.py │ ├── micro.py │ └── quantum.py ├── core/ │ ├── engine.py │ └── memory.py ├── data/ │ └── memory.json ├── examples/ │ └── run_example.py ├── main.py └── requirements.txt
- Clone the repo
- Create and activate a virtual environment
- Run: pip install -r requirements.txt
- Run: python main.py
Core agent logic complete. OpenAI API integration in progress.