Skip to main content

Pydantic Graph

CI Coverage PyPI python versions license

Graph and finite state machine library.

This library is developed as part of Pydantic AI, however it has no dependency on pydantic-ai or related packages and can be considered as a pure graph-based state machine library. You may find it useful whether or not you're using Pydantic AI or even building with GenAI.

As with Pydantic AI, this library prioritizes type safety and use of common Python syntax over esoteric, domain-specific use of Python syntax.

pydantic-graph allows you to define graphs using standard Python syntax. In particular, edges are defined using the return type hint of nodes.

Full documentation is available at ai.pydantic.dev/graph.

Here's a basic example:

from __future__ import annotations

from dataclasses import dataclass

from pydantic_graph import BaseNode, End, GraphBuilder, GraphRunContext, StepContext


@dataclass
class DivisibleBy5(BaseNode[None, None, int]):
    foo: int

    async def run(
        self,
        ctx: GraphRunContext,
    ) -> Increment | End[int]:
        if self.foo % 5 == 0:
            return End(self.foo)
        else:
            return Increment(self.foo)


@dataclass
class Increment(BaseNode):
    foo: int

    async def run(self, ctx: GraphRunContext) -> DivisibleBy5:
        return DivisibleBy5(self.foo + 1)


g = GraphBuilder(input_type=int, output_type=int)


@g.step
async def start(ctx: StepContext[None, None, int]) -> DivisibleBy5:
    return DivisibleBy5(ctx.inputs)


g.add(
    g.node(DivisibleBy5),
    g.node(Increment),
    g.edge_from(g.start_node).to(start),
)

fives_graph = g.build()


async def main():
    result = await fives_graph.run(inputs=4)
    print(result)
    #> 5

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydantic_graph-2.23.0.tar.gz (45.2 kB view details)

Uploaded Source

Built Distribution

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

pydantic_graph-2.23.0-py3-none-any.whl (52.7 kB view details)

Uploaded Python 3

File details

Details for the file pydantic_graph-2.23.0.tar.gz.

File metadata

  • Download URL: pydantic_graph-2.23.0.tar.gz
  • Upload date:
  • Size: 45.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for pydantic_graph-2.23.0.tar.gz
Algorithm Hash digest
SHA256 54c9939f47fd8a268c96320d7d90e7cef037cbfd2625a675dc4028c1377f70ab
MD5 cfeb5950732198c8fddfbe76fda8af15
BLAKE2b-256 09fc273bac7d14fb62c060e0c20c51a9cc60e9e90a96d992fd20e77abf4b6ac1

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydantic_graph-2.23.0.tar.gz:

Publisher: ci.yml on pydantic/pydantic-ai

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

File details

Details for the file pydantic_graph-2.23.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pydantic_graph-2.23.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b0f12b4f72adb2a5522b5962c95e1a7b140cb3f631a628036f935e291a9e50ba
MD5 3c13df5b10437dab4d7db627fc318f93
BLAKE2b-256 0dc4875cf853d205dc55422bd44ff0fbfac82e6e34ff7693df016fc3a4088d32

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydantic_graph-2.23.0-py3-none-any.whl:

Publisher: ci.yml on pydantic/pydantic-ai

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

Release history Release notifications | RSS feed

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