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.

Yggdrasil

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

Copyright © 2026 Hoang Dao. MIT License.

This site uses Just the Docs, a documentation theme for Jekyll.