Yggdrasil
A Python framework for graph-native agent orchestration.
Yggdrasil lets you define, run, and inspect multi-agent workflows as first-class graphs — with deterministic routing, structured tracing, and a built-in visualizer.

Quick Install
pip install yggdrasil
Five-Line Example
from yggdrasil import GraphApp
app = GraphApp()
agent = app.create_agent("researcher", model="claude-opus-4-6")
result = await app.run(agent, "Summarize the latest AI papers")
print(result)
Documentation
| Section | Description |
|---|---|
| Start Here | Shortest path to understanding the project |
| Your First Graph | Beginner tutorial using the builder API |
| Architecture | How the project is layered |
| Workflow Patterns | Common graph patterns and recipes |
| Observability | Tracing, logging, and inspection |
| Batch Execution | Running many inputs in parallel |
| API Reference | Full public API reference |