Skip to main content

Python SDK for DuraGraph - Reliable AI Workflow Orchestration

Project description

DuraGraph Python SDK

PyPI version Python License CI

Python SDK for DuraGraph - Reliable AI Workflow Orchestration.

Build AI agents with decorators, deploy to a control plane, and get full observability out of the box.

Installation

pip install duragraph

# With OpenAI support
pip install duragraph[openai]

# With Anthropic support
pip install duragraph[anthropic]

# All features
pip install duragraph[all]

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_complete":
        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 Repositories

Repository Description
duragraph Core API server
duragraph-go Go SDK
duragraph-examples Example projects
duragraph-docs Documentation

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

duragraph_python-0.2.1.tar.gz (326.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

duragraph_python-0.2.1-py3-none-any.whl (82.0 kB view details)

Uploaded Python 3

File details

Details for the file duragraph_python-0.2.1.tar.gz.

File metadata

  • Download URL: duragraph_python-0.2.1.tar.gz
  • Upload date:
  • Size: 326.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for duragraph_python-0.2.1.tar.gz
Algorithm Hash digest
SHA256 5efa2f70f5d3c708ccd6ed7488586962c6e3bcc38fac2f27d5cf3d6cc48c90b7
MD5 61add43b84ed06bc87043ce6da91281a
BLAKE2b-256 436ed212a99b22955d38c3efe4bd74b86968ae8e0f7ed8a6d4e79005d6fa6e82

See more details on using hashes here.

Provenance

The following attestation bundles were made for duragraph_python-0.2.1.tar.gz:

Publisher: publish.yml on Duragraph/duragraph-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file duragraph_python-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for duragraph_python-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c09983b007e011f8f3876088e6b3869e7826049830b7e5a3189baf03ce6f7fcf
MD5 7921c5dc18704460d26798b11ecbf098
BLAKE2b-256 58d997a548985e305180f3f70b8a17030c019441dc304613aac126e1433533dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for duragraph_python-0.2.1-py3-none-any.whl:

Publisher: publish.yml on Duragraph/duragraph-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page