Today's AI agent frameworks all let the large model decide its own next move—so it often gets lost, loops, or produces non-reproducible results. GraphBit's answer: don't let the model lead; lock the tracks down with a Rust engine.
Mainstream frameworks (AutoGen, CrewAI, LangGraph) use a "prompt orchestration" model—the model itself decides the workflow. This commonly suffers from three chronic problems: hallucinated routing, infinite loops, and non-reproducibility.
GraphBit's approach: define the workflow up front as a DAG and execute it rigidly with a Rust engine.
Core Design
- The workflow is fully determined before the run starts. Agents are no longer "thinkers" but "typed functions"—their input/output types and tasks are written explicitly in the DAG definition.
- The Rust engine handles orchestration: routing, state transitions, and tool calls all bypass the LLM and are managed by the engine.
- A three-layer memory architecture (scratchpad, state, external connectors) isolates context, preventing reasoning degradation in long pipelines.
- Title: GraphBit: A Graph-based Agentic Framework for Non-Linear Agent Orchestration
- Authors: Yeahia Sarker, Md Rahmat Ullah, Musa Molla, Shafiq Joty
- Preprint: arXiv:2605.13848 (cs.AI)
- Core contribution: DAG + Rust engine agent orchestration, 67.6% on GAIA, zero hallucinated routing
- Paper link: https://arxiv.org/abs/2605.13848
Benchmark Results
On the GAIA benchmark, GraphBit achieves 67.6% accuracy (the highest), zero framework-induced hallucination, and only 11.9ms of overhead—outperforming six frameworks including AutoGen, CrewAI, and LangGraph.
> GAIA is a benchmark of AI agents completing real-world tasks; 67.6% beats all tested frameworks. But in my view, the gap between GAIA tasks and real production environments cannot be ignored.
Paper Info
1. Sarker, Y., et al. (2026). GraphBit. arXiv:2605.13848. 2. Wu, Q., et al. (2023). AutoGen. 3. Hong, S., et al. (2024). MetaGPT.