Quick Start
Installation
uv add git+https://github.com/gilad-rubin/hypergraph.git
# or
pip install git+https://github.com/gilad-rubin/hypergraph.gitYour First Graph
1. Define Nodes
from hypergraph import node
@node(output_name="doubled")
def double(x: int) -> int:
return x * 2
@node(output_name="result")
def add_ten(doubled: int) -> int:
return doubled + 102. Build a Graph
3. Run It
Complete Example: RAG Pipeline
What's Next?
Last updated