pydantic_graph
Graph
dataclass
Bases: Generic[StateT, DepsT, RunEndT]
Definition of a graph.
In pydantic-graph
, a graph is a collection of nodes that can be run in sequence. The nodes define
their outgoing edges — e.g. which nodes may be run next, and thereby the structure of the graph.
Here's a very simple example of a graph which increments a number by 1, but makes sure the number is never 42 at the end.
from __future__ import annotations
from dataclasses import dataclass
from pydantic_graph import BaseNode, End, Graph, GraphRunContext
@dataclass
class MyState:
number: int
@dataclass
class Increment(BaseNode[MyState]):
async def run(self, ctx: GraphRunContext) -> Check42:
ctx.state.number += 1
return Check42()
@dataclass
class Check42(BaseNode[MyState, None, int]):
async def run(self, ctx: GraphRunContext) -> Increment | End[int]:
if ctx.state.number == 42:
return Increment()
else:
return End(ctx.state.number)
never_42_graph = Graph(nodes=(Increment, Check42))
See run
For an example of running graph, and
mermaid_code
for an example of generating a mermaid diagram
from the graph.
Source code in pydantic_graph/pydantic_graph/graph.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 |
|
__init__
__init__(
*,
nodes: Sequence[type[BaseNode[StateT, DepsT, RunEndT]]],
name: str | None = None,
state_type: type[StateT] | Unset = UNSET,
run_end_type: type[RunEndT] | Unset = UNSET,
snapshot_state: Callable[
[StateT], StateT
] = deep_copy_state
)
Create a graph from a sequence of nodes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
nodes
|
Sequence[type[BaseNode[StateT, DepsT, RunEndT]]]
|
The nodes which make up the graph, nodes need to be unique and all be generic in the same state type. |
required |
name
|
str | None
|
Optional name for the graph, if not provided the name will be inferred from the calling frame on the first call to a graph method. |
None
|
state_type
|
type[StateT] | Unset
|
The type of the state for the graph, this can generally be inferred from |
UNSET
|
run_end_type
|
type[RunEndT] | Unset
|
The type of the result of running the graph, this can generally be inferred from |
UNSET
|
snapshot_state
|
Callable[[StateT], StateT]
|
deep_copy_state
|
Source code in pydantic_graph/pydantic_graph/graph.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
|
run
async
run(
start_node: BaseNode[StateT, DepsT, RunEndT],
*,
state: StateT = None,
deps: DepsT = None,
infer_name: bool = True
) -> tuple[RunEndT, list[HistoryStep[StateT, RunEndT]]]
Run the graph from a starting node until it ends.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
start_node
|
BaseNode[StateT, DepsT, RunEndT]
|
the first node to run, since the graph definition doesn't define the entry point in the graph, you need to provide the starting node. |
required |
state
|
StateT
|
The initial state of the graph. |
None
|
deps
|
DepsT
|
The dependencies of the graph. |
None
|
infer_name
|
bool
|
Whether to infer the graph name from the calling frame. |
True
|
Returns:
Type | Description |
---|---|
tuple[RunEndT, list[HistoryStep[StateT, RunEndT]]]
|
The result type from ending the run and the history of the run. |
Here's an example of running the graph from above:
from never_42 import Increment, MyState, never_42_graph
async def main():
state = MyState(1)
_, history = await never_42_graph.run(Increment(), state=state)
print(state)
#> MyState(number=2)
print(len(history))
#> 3
state = MyState(41)
_, history = await never_42_graph.run(Increment(), state=state)
print(state)
#> MyState(number=43)
print(len(history))
#> 5
Source code in pydantic_graph/pydantic_graph/graph.py
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
|
run_sync
run_sync(
start_node: BaseNode[StateT, DepsT, RunEndT],
*,
state: StateT = None,
deps: DepsT = None,
infer_name: bool = True
) -> tuple[RunEndT, list[HistoryStep[StateT, RunEndT]]]
Run the graph synchronously.
This is a convenience method that wraps self.run
with loop.run_until_complete(...)
.
You therefore can't use this method inside async code or if there's an active event loop.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
start_node
|
BaseNode[StateT, DepsT, RunEndT]
|
the first node to run, since the graph definition doesn't define the entry point in the graph, you need to provide the starting node. |
required |
state
|
StateT
|
The initial state of the graph. |
None
|
deps
|
DepsT
|
The dependencies of the graph. |
None
|
infer_name
|
bool
|
Whether to infer the graph name from the calling frame. |
True
|
Returns:
Type | Description |
---|---|
tuple[RunEndT, list[HistoryStep[StateT, RunEndT]]]
|
The result type from ending the run and the history of the run. |
Source code in pydantic_graph/pydantic_graph/graph.py
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
|
next
async
next(
node: BaseNode[StateT, DepsT, RunEndT],
history: list[HistoryStep[StateT, RunEndT]],
*,
state: StateT = None,
deps: DepsT = None,
infer_name: bool = True
) -> BaseNode[StateT, DepsT, Any] | End[RunEndT]
Run a node in the graph and return the next node to run.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
node
|
BaseNode[StateT, DepsT, RunEndT]
|
The node to run. |
required |
history
|
list[HistoryStep[StateT, RunEndT]]
|
The history of the graph run so far. NOTE: this will be mutated to add the new step. |
required |
state
|
StateT
|
The current state of the graph. |
None
|
deps
|
DepsT
|
The dependencies of the graph. |
None
|
infer_name
|
bool
|
Whether to infer the graph name from the calling frame. |
True
|
Returns:
Type | Description |
---|---|
BaseNode[StateT, DepsT, Any] | End[RunEndT]
|
The next node to run or |
Source code in pydantic_graph/pydantic_graph/graph.py
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
|
dump_history
Dump the history of a graph run as JSON.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
history
|
list[HistoryStep[StateT, RunEndT]]
|
The history of the graph run. |
required |
indent
|
int | None
|
The number of spaces to indent the JSON. |
None
|
Returns:
Type | Description |
---|---|
bytes
|
The JSON representation of the history. |
Source code in pydantic_graph/pydantic_graph/graph.py
244 245 246 247 248 249 250 251 252 253 254 |
|
load_history
Load the history of a graph run from JSON.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
json_bytes
|
str | bytes | bytearray
|
The JSON representation of the history. |
required |
Returns:
Type | Description |
---|---|
list[HistoryStep[StateT, RunEndT]]
|
The history of the graph run. |
Source code in pydantic_graph/pydantic_graph/graph.py
256 257 258 259 260 261 262 263 264 265 |
|
mermaid_code
mermaid_code(
*,
start_node: (
Sequence[NodeIdent] | NodeIdent | None
) = None,
title: str | None | Literal[False] = None,
edge_labels: bool = True,
notes: bool = True,
highlighted_nodes: (
Sequence[NodeIdent] | NodeIdent | None
) = None,
highlight_css: str = DEFAULT_HIGHLIGHT_CSS,
infer_name: bool = True
) -> str
Generate a diagram representing the graph as mermaid diagram.
This method calls pydantic_graph.mermaid.generate_code
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
start_node
|
Sequence[NodeIdent] | NodeIdent | None
|
The node or nodes which can start the graph. |
None
|
title
|
str | None | Literal[False]
|
The title of the diagram, use |
None
|
edge_labels
|
bool
|
Whether to include edge labels. |
True
|
notes
|
bool
|
Whether to include notes on each node. |
True
|
highlighted_nodes
|
Sequence[NodeIdent] | NodeIdent | None
|
Optional node or nodes to highlight. |
None
|
highlight_css
|
str
|
The CSS to use for highlighting nodes. |
DEFAULT_HIGHLIGHT_CSS
|
infer_name
|
bool
|
Whether to infer the graph name from the calling frame. |
True
|
Returns:
Type | Description |
---|---|
str
|
The mermaid code for the graph, which can then be rendered as a diagram. |
Here's an example of generating a diagram for the graph from above:
from never_42 import Increment, never_42_graph
print(never_42_graph.mermaid_code(start_node=Increment))
'''
---
title: never_42_graph
---
stateDiagram-v2
[*] --> Increment
Increment --> Check42
Check42 --> Increment
Check42 --> [*]
'''
The rendered diagram will look like this:
---
title: never_42_graph
---
stateDiagram-v2
[*] --> Increment
Increment --> Check42
Check42 --> Increment
Check42 --> [*]
Source code in pydantic_graph/pydantic_graph/graph.py
279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 |
|
mermaid_image
mermaid_image(
infer_name: bool = True, **kwargs: Unpack[MermaidConfig]
) -> bytes
Generate a diagram representing the graph as an image.
The format and diagram can be customized using kwargs
,
see pydantic_graph.mermaid.MermaidConfig
.
Uses external service
This method makes a request to mermaid.ink to render the image, mermaid.ink
is a free service not affiliated with Pydantic.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
infer_name
|
bool
|
Whether to infer the graph name from the calling frame. |
True
|
**kwargs
|
Unpack[MermaidConfig]
|
Additional arguments to pass to |
{}
|
Returns:
Type | Description |
---|---|
bytes
|
The image bytes. |
Source code in pydantic_graph/pydantic_graph/graph.py
351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 |
|
mermaid_save
mermaid_save(
path: Path | str,
/,
*,
infer_name: bool = True,
**kwargs: Unpack[MermaidConfig],
) -> None
Generate a diagram representing the graph and save it as an image.
The format and diagram can be customized using kwargs
,
see pydantic_graph.mermaid.MermaidConfig
.
Uses external service
This method makes a request to mermaid.ink to render the image, mermaid.ink
is a free service not affiliated with Pydantic.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
Path | str
|
The path to save the image to. |
required |
infer_name
|
bool
|
Whether to infer the graph name from the calling frame. |
True
|
**kwargs
|
Unpack[MermaidConfig]
|
Additional arguments to pass to |
{}
|
Source code in pydantic_graph/pydantic_graph/graph.py
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 |
|