Python SDK for DuraGraph — durable, replayable agent workflows
Project description
DuraGraph Python SDK
Python SDK for DuraGraph — durable, replayable agent workflows.
Define a graph with decorators, register it with the control plane, and get crash-safe execution, event-sourced replay, and live observability for free. Like Temporal for AI agents — in Python.
Installation
The package is published as duragraph on PyPI (renamed from duragraph-python in v0.3.0; the old name is frozen at 0.2.1 and will not receive further releases). We recommend uv for dependency management.
# With uv (recommended)
uv add duragraph
uv add 'duragraph[openai]'
uv add 'duragraph[anthropic]'
uv add 'duragraph[all]'
# With pip
pip install duragraph
Quick Start
from duragraph import Graph, llm_node, entrypoint
@Graph(id="customer_support")
class CustomerSupportAgent:
"""A customer support agent that classifies and responds to queries."""
@entrypoint
@llm_node(model="gpt-4o-mini")
def classify(self, state):
"""Classify the customer intent."""
return {"intent": "billing"}
@llm_node(model="gpt-4o-mini")
def respond(self, state):
"""Generate a response based on intent."""
return {"response": f"I'll help you with {state['intent']}."}
# Define flow
classify >> respond
# Run locally
agent = CustomerSupportAgent()
result = agent.run({"message": "I have a billing question"})
print(result)
# Or deploy to control plane
agent.serve("http://localhost:8081")
Features
Decorator-Based Graph Definition
from duragraph import Graph, llm_node, tool_node, router_node, human_node
@Graph(id="my_agent")
class MyAgent:
@llm_node(model="gpt-4o-mini", temperature=0.7)
def process(self, state):
return state
@tool_node
def search(self, state):
results = my_search_function(state["query"])
return {"results": results}
@router_node
def route(self, state):
return "path_a" if state["condition"] else "path_b"
@human_node(prompt="Please review")
def review(self, state):
return state
Streaming
async for event in agent.stream({"message": "Hello"}):
if event.type == "token":
print(event.data, end="")
elif event.type == "node_completed":
print(f"\nNode {event.node_id} completed")
Subgraphs
@Graph(id="research")
class ResearchAgent:
@llm_node
def research(self, state):
return {"findings": "..."}
@Graph(id="main")
class MainAgent:
research = ResearchAgent.as_subgraph()
@entrypoint
def plan(self, state):
return state
plan >> research
Requirements
- Python 3.10+
- DuraGraph Control Plane (for deployment)
Documentation
Related modules
The Python SDK lives in the duragraph monorepo alongside its siblings:
| Path | Description |
|---|---|
/ |
Core engine (Go, embeds the React dashboard incl. visual workflow editor) |
go-sdk/ |
Go SDK |
examples/ |
Example projects (multi-language) |
docs/ |
Documentation site source |
Contributing
See CONTRIBUTING.md for guidelines.
License
Apache 2.0 - See LICENSE for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file duragraph-0.3.3.tar.gz.
File metadata
- Download URL: duragraph-0.3.3.tar.gz
- Upload date:
- Size: 325.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ad85ac39103767fa9c46dca3873ebb8c61b277a21577d324c30f181c450afef4
|
|
| MD5 |
96d13c153310464b250f90a4d5d7c21f
|
|
| BLAKE2b-256 |
5fa10348c94a3423e8f9dfc9c76abf72aafd6324753642daa69915c0042003ea
|
Provenance
The following attestation bundles were made for duragraph-0.3.3.tar.gz:
Publisher:
pypi.yml on Duragraph/duragraph
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
duragraph-0.3.3.tar.gz -
Subject digest:
ad85ac39103767fa9c46dca3873ebb8c61b277a21577d324c30f181c450afef4 - Sigstore transparency entry: 1511659005
- Sigstore integration time:
-
Permalink:
Duragraph/duragraph@07a0396161533116f4d19741075e3af3e7747e2a -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Duragraph
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yml@07a0396161533116f4d19741075e3af3e7747e2a -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file duragraph-0.3.3-py3-none-any.whl.
File metadata
- Download URL: duragraph-0.3.3-py3-none-any.whl
- Upload date:
- Size: 82.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bf064667f44ce6ebffc7fbf5ae6b15c5addf9dbc65b2424772fbc88e9ea71c1
|
|
| MD5 |
a96689630c5f59e74bc7c52c823c2a73
|
|
| BLAKE2b-256 |
2a44edf00185c72c42056738f40a8aed9f0e5e18f9db514bcd1cb927fe54ba0a
|
Provenance
The following attestation bundles were made for duragraph-0.3.3-py3-none-any.whl:
Publisher:
pypi.yml on Duragraph/duragraph
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
duragraph-0.3.3-py3-none-any.whl -
Subject digest:
9bf064667f44ce6ebffc7fbf5ae6b15c5addf9dbc65b2424772fbc88e9ea71c1 - Sigstore transparency entry: 1511659262
- Sigstore integration time:
-
Permalink:
Duragraph/duragraph@07a0396161533116f4d19741075e3af3e7747e2a -
Branch / Tag:
refs/heads/main - Owner: https://github.com/Duragraph
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi.yml@07a0396161533116f4d19741075e3af3e7747e2a -
Trigger Event:
workflow_dispatch
-
Statement type: