3MagicLabs Agent¶
A supervisor multi-agent system for autonomous research, reasoning and code execution, built on LangGraph.
Start here¶
pip install -e ".[dev,tools,app]"
cp .env.example .env # add at least one provider key
agent doctor # confirm what is configured
agent run --limit 3 # answer three benchmark tasks
- Architecture — how the supervisor, specialists and budgets fit together
- Configuration — every environment variable
- Observability — logs, traces and metrics
- GAIA benchmark — running and scoring against the course API
- Roadmap — Level 1 now, Level 3 later
Design commitments¶
- Nothing at import time. No client, credential, or network call runs on import. A missing key degrades a tool, it never crashes the process.
- Everything is bounded. Every loop has an iteration cap; every network call has a timeout; every run has a wall-clock budget.
- Work is never lost. Answers are cached to disk as they are produced; submission is a separate action.
- Immutable by default. Configuration and metrics are frozen dataclasses.