pydantic_graph.graph_builder
Builder-based graph API: builder, graph runner, and mermaid rendering.
This module is the canonical home for the builder-based graph API:
GraphBuilder for declaratively constructing
executable graphs, Graph and
GraphRun for executing them, and the mermaid
rendering helpers used by Graph.render(). The same public symbols are
re-exported from pydantic_graph directly.
StateT
module-attribute
StateT = TypeVar('StateT', infer_variance=True)
Type variable for graph state.
DepsT
module-attribute
DepsT = TypeVar('DepsT', infer_variance=True)
Type variable for graph dependencies.
InputT
module-attribute
InputT = TypeVar('InputT', infer_variance=True)
Type variable for graph inputs.
OutputT
module-attribute
OutputT = TypeVar('OutputT', infer_variance=True)
Type variable for graph outputs.
EndMarker
dataclass
A marker indicating the end of graph execution with a final value.
EndMarker is used internally to signal that the graph has completed execution and carries the final output value.
Class Type Parameters:
| Name | Bound or Constraints | Description | Default |
|---|---|---|---|
OutputT
|
The type of the final output value |
required |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | |
ErrorMarker
dataclass
A marker indicating that a graph node raised an exception.
Yielded by the graph iterator instead of raising immediately, allowing the caller
to recover by sending new tasks via GraphRun.next() or GraphRun.override_next().
If the caller does not override, the error is re-raised on the next iteration.
Source code in pydantic_graph/pydantic_graph/graph_builder.py
126 127 128 129 130 131 132 133 134 135 136 | |
JoinItem
dataclass
An item representing data flowing into a join operation.
JoinItem carries input data from a parallel execution path to a join node, along with metadata about which execution 'fork' it originated from.
Source code in pydantic_graph/pydantic_graph/graph_builder.py
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 | |
join_id
instance-attribute
join_id: JoinID
The ID of the join node this item is targeting.
fork_stack
instance-attribute
fork_stack: ForkStack
The stack of ForkStackItems that led to producing this join item.
Graph
dataclass
Bases: Generic[StateT, DepsT, InputT, OutputT]
A complete graph definition ready for execution.
The Graph class represents a complete workflow graph with typed inputs, outputs, state, and dependencies. It contains all nodes, edges, and metadata needed for execution.
Class Type Parameters:
| Name | Bound or Constraints | Description | Default |
|---|---|---|---|
StateT
|
The type of the graph state |
required | |
DepsT
|
The type of the dependencies |
required | |
InputT
|
The type of the input data |
required | |
OutputT
|
The type of the output data |
required |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
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 | |
name
instance-attribute
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.
auto_instrument
instance-attribute
auto_instrument: bool
Whether to automatically create instrumentation spans.
edges_by_source
instance-attribute
Outgoing paths from each source node.
parent_forks
instance-attribute
parent_forks: dict[JoinID, ParentFork[NodeID]]
Parent fork information for each join node.
intermediate_join_nodes
instance-attribute
For each join, the set of other joins that appear between it and its parent fork.
Used to determine which joins are "final" (have no other joins as intermediates) and which joins should preserve fork stacks when proceeding downstream.
get_parent_fork
get_parent_fork(join_id: JoinID) -> ParentFork[NodeID]
Get the parent fork information for a join node.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
join_id
|
JoinID
|
The ID of the join node |
required |
Returns:
| Type | Description |
|---|---|
ParentFork[NodeID]
|
The parent fork information for the join |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If the join ID is not found or has no parent fork |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | |
is_final_join
is_final_join(join_id: JoinID) -> bool
Check if a join is 'final' (has no downstream joins with the same parent fork).
A join is non-final if it appears as an intermediate node for another join with the same parent fork.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
join_id
|
JoinID
|
The ID of the join node |
required |
Returns:
| Type | Description |
|---|---|
bool
|
True if the join is final, False if it's non-final |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 | |
run
async
run(
*,
state: StateT = None,
deps: DepsT = None,
inputs: InputT = None,
span: (
AbstractContextManager[AbstractSpan] | None
) = None,
infer_name: bool = True
) -> OutputT
Execute the graph and return the final output.
This is the main entry point for graph execution. It runs the graph to completion and returns the final output value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
state
|
StateT
|
The graph state instance |
None
|
deps
|
DepsT
|
The dependencies instance |
None
|
inputs
|
InputT
|
The input data for the graph |
None
|
span
|
AbstractContextManager[AbstractSpan] | None
|
Optional span for tracing/instrumentation |
None
|
infer_name
|
bool
|
Whether to infer the graph name from the calling frame. |
True
|
Returns:
| Type | Description |
|---|---|
OutputT
|
The final output from the graph execution |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
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 | |
run_sync
run_sync(
*,
state: StateT = None,
deps: DepsT = None,
inputs: InputT = None,
span: (
AbstractContextManager[AbstractSpan] | None
) = None,
infer_name: bool = True
) -> OutputT
Synchronously execute the graph and return the final output.
This is a convenience wrapper around [run][pydantic_graph.Graph.run] that runs the coroutine on the
current event loop via loop.run_until_complete(...). As such, it cannot be called from inside async
code or when an event loop is already running.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
state
|
StateT
|
The graph state instance |
None
|
deps
|
DepsT
|
The dependencies instance |
None
|
inputs
|
InputT
|
The input data for the graph |
None
|
span
|
AbstractContextManager[AbstractSpan] | None
|
Optional span for tracing/instrumentation |
None
|
infer_name
|
bool
|
Whether to infer the graph name from the calling frame. |
True
|
Returns:
| Type | Description |
|---|---|
OutputT
|
The final output from the graph execution |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
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 | |
iter
async
iter(
*,
state: StateT = None,
deps: DepsT = None,
inputs: InputT = None,
span: (
AbstractContextManager[AbstractSpan] | None
) = None,
infer_name: bool = True
) -> AsyncIterator[GraphRun[StateT, DepsT, OutputT]]
Create an iterator for step-by-step graph execution.
This method allows for more fine-grained control over graph execution, enabling inspection of intermediate states and results.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
state
|
StateT
|
The graph state instance |
None
|
deps
|
DepsT
|
The dependencies instance |
None
|
inputs
|
InputT
|
The input data for the graph |
None
|
span
|
AbstractContextManager[AbstractSpan] | None
|
Optional span for tracing/instrumentation |
None
|
infer_name
|
bool
|
Whether to infer the graph name from the calling frame. |
True
|
Yields:
| Type | Description |
|---|---|
AsyncIterator[GraphRun[StateT, DepsT, OutputT]]
|
A GraphRun instance that can be iterated for step-by-step execution |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
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 | |
render
render(
*,
title: str | None = None,
direction: StateDiagramDirection | None = None
) -> str
Render the graph as a Mermaid diagram string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
title
|
str | None
|
Optional title for the diagram |
None
|
direction
|
StateDiagramDirection | None
|
Optional direction for the diagram layout |
None
|
Returns:
| Type | Description |
|---|---|
str
|
A string containing the Mermaid diagram representation |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
361 362 363 364 365 366 367 368 369 370 371 | |
__str__
__str__() -> str
Return a Mermaid diagram representation of the graph.
Returns:
| Type | Description |
|---|---|
str
|
A string containing the Mermaid diagram of the graph |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
378 379 380 381 382 383 384 | |
GraphTaskRequest
dataclass
A request to run a task representing the execution of a node in the graph.
GraphTaskRequest encapsulates all the information needed to execute a specific node, including its inputs and the fork context it's executing within.
Source code in pydantic_graph/pydantic_graph/graph_builder.py
387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 | |
node_id
instance-attribute
node_id: NodeID
The ID of the node to execute.
fork_stack
class-attribute
instance-attribute
fork_stack: ForkStack = field(repr=False)
Stack of forks that have been entered.
Used by the GraphRun to decide when to proceed through joins.
GraphTask
dataclass
Bases: GraphTaskRequest
A task representing the execution of a node in the graph.
GraphTask encapsulates all the information needed to execute a specific node, including its inputs and the fork context it's executing within, and has a unique ID to identify the task within the graph run.
Source code in pydantic_graph/pydantic_graph/graph_builder.py
408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 | |
task_id
class-attribute
instance-attribute
task_id: TaskID = field(repr=False)
Unique identifier for this task.
GraphRun
Bases: Generic[StateT, DepsT, OutputT]
A single execution instance of a graph.
GraphRun manages the execution state for a single run of a graph, including task scheduling, fork/join coordination, and result tracking.
Class Type Parameters:
| Name | Bound or Constraints | Description | Default |
|---|---|---|---|
StateT
|
The type of the graph state |
required | |
DepsT
|
The type of the dependencies |
required | |
OutputT
|
The type of the output data |
required |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
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 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 | |
__init__
__init__(
graph: Graph[StateT, DepsT, InputT, OutputT],
*,
state: StateT,
deps: DepsT,
inputs: InputT,
traceparent: str | None
)
Initialize a graph run.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
graph
|
Graph[StateT, DepsT, InputT, OutputT]
|
The graph to execute |
required |
state
|
StateT
|
The graph state instance |
required |
deps
|
DepsT
|
The dependencies instance |
required |
inputs
|
InputT
|
The input data for the graph |
required |
traceparent
|
str | None
|
Optional trace parent for instrumentation |
required |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
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 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 | |
graph
instance-attribute
graph = graph
The graph being executed.
state
instance-attribute
state = state
The graph state instance.
deps
instance-attribute
deps = deps
The dependencies instance.
inputs
instance-attribute
inputs = inputs
The initial input data.
__aiter__
__aiter__() -> (
AsyncIterator[EndMarker[OutputT] | Sequence[GraphTask]]
)
Return self as an async iterator.
Returns:
| Type | Description |
|---|---|
AsyncIterator[EndMarker[OutputT] | Sequence[GraphTask]]
|
Self for async iteration |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
534 535 536 537 538 539 540 | |
__anext__
async
Get the next item in the async iteration.
Returns:
| Type | Description |
|---|---|
EndMarker[OutputT] | Sequence[GraphTask]
|
The next execution result from the graph |
Raises:
| Type | Description |
|---|---|
Exception
|
If a node raised an error and the caller has not recovered via
|
Source code in pydantic_graph/pydantic_graph/graph_builder.py
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 | |
next
async
next(
value: (
EndMarker[OutputT]
| Sequence[GraphTaskRequest]
| None
) = None,
) -> EndMarker[OutputT] | Sequence[GraphTask]
Advance the graph execution by one step.
This method allows for sending a value to the iterator, which is useful for resuming iteration or overriding intermediate results.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
EndMarker[OutputT] | Sequence[GraphTaskRequest] | None
|
Optional value to send to the iterator |
None
|
Returns:
| Type | Description |
|---|---|
EndMarker[OutputT] | Sequence[GraphTask]
|
The next execution result: either an EndMarker, or sequence of GraphTasks |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 | |
override_next
override_next(
value: Sequence[GraphTaskRequest] | EndMarker[OutputT],
) -> None
Override the next pending step, allowing the graph to continue after an End or error.
This is used by hook systems (like after_node_run or on_node_run_error) to redirect
the graph to a new node when the current step produced an End result or raised an error,
or to signal early completion by passing an EndMarker.
Must only be called between iterations (not while an iteration is in flight).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
value
|
Sequence[GraphTaskRequest] | EndMarker[OutputT]
|
New task requests to execute next, or an |
required |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
584 585 586 587 588 589 590 591 592 593 594 595 596 | |
next_task
property
next_task: (
EndMarker[OutputT] | ErrorMarker | Sequence[GraphTask]
)
Get the next task(s) to be executed.
Returns:
| Type | Description |
|---|---|
EndMarker[OutputT] | ErrorMarker | Sequence[GraphTask]
|
The next execution item, or the initial task if none is set |
GraphBuilder
dataclass
Bases: Generic[StateT, DepsT, GraphInputT, GraphOutputT]
A builder for constructing executable graph definitions.
GraphBuilder provides a fluent interface for defining nodes, edges, and routing in a graph workflow. It supports typed state, dependencies, and input/output validation.
Class Type Parameters:
| Name | Bound or Constraints | Description | Default |
|---|---|---|---|
StateT
|
The type of the graph state |
required | |
DepsT
|
The type of the dependencies |
required | |
GraphInputT
|
The type of the graph input data |
required | |
GraphOutputT
|
The type of the graph output data |
required |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 | |
__init__
__init__(
*,
name: str | None = None,
state_type: TypeOrTypeExpression[StateT] = NoneType,
deps_type: TypeOrTypeExpression[DepsT] = NoneType,
input_type: TypeOrTypeExpression[
GraphInputT
] = NoneType,
output_type: TypeOrTypeExpression[
GraphOutputT
] = NoneType,
auto_instrument: bool = True
)
Initialize a graph builder.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
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
|
TypeOrTypeExpression[StateT]
|
The type of the graph state |
NoneType
|
deps_type
|
TypeOrTypeExpression[DepsT]
|
The type of the dependencies |
NoneType
|
input_type
|
TypeOrTypeExpression[GraphInputT]
|
The type of the graph input data |
NoneType
|
output_type
|
TypeOrTypeExpression[GraphOutputT]
|
The type of the graph output data |
NoneType
|
auto_instrument
|
bool
|
Whether to automatically create instrumentation spans |
True
|
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 | |
name
instance-attribute
name: str | None = name
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.
state_type
instance-attribute
state_type: TypeOrTypeExpression[StateT] = state_type
The type of the graph state.
deps_type
instance-attribute
deps_type: TypeOrTypeExpression[DepsT] = deps_type
The type of the dependencies.
input_type
instance-attribute
input_type: TypeOrTypeExpression[GraphInputT] = input_type
The type of the graph input data.
output_type
instance-attribute
output_type: TypeOrTypeExpression[GraphOutputT] = (
output_type
)
The type of the graph output data.
auto_instrument
instance-attribute
auto_instrument: bool = auto_instrument
Whether to automatically create instrumentation spans.
start_node
property
start_node: StartNode[GraphInputT]
Get the start node for the graph.
Returns:
| Type | Description |
|---|---|
StartNode[GraphInputT]
|
The start node that receives the initial graph input |
end_node
property
end_node: EndNode[GraphOutputT]
Get the end node for the graph.
Returns:
| Type | Description |
|---|---|
EndNode[GraphOutputT]
|
The end node that produces the final graph output |
step
step(
call: (
StepFunction[StateT, DepsT, InputT, OutputT] | None
) = None,
*,
node_id: str | None = None,
label: str | None = None
) -> (
Step[StateT, DepsT, InputT, OutputT]
| Callable[
[StepFunction[StateT, DepsT, InputT, OutputT]],
Step[StateT, DepsT, InputT, OutputT],
]
)
Create a step from a step function.
This method can be used as a decorator or called directly to create a step node from an async function.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
call
|
StepFunction[StateT, DepsT, InputT, OutputT] | None
|
The step function to wrap |
None
|
node_id
|
str | None
|
Optional ID for the node |
None
|
label
|
str | None
|
Optional human-readable label |
None
|
Returns:
| Type | Description |
|---|---|
Step[StateT, DepsT, InputT, OutputT] | Callable[[StepFunction[StateT, DepsT, InputT, OutputT]], Step[StateT, DepsT, InputT, OutputT]]
|
Either a Step instance or a decorator function |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 | |
stream
stream(
*, node_id: str | None = None, label: str | None = None
) -> Callable[
[StreamFunction[StateT, DepsT, InputT, OutputT]],
Step[StateT, DepsT, InputT, AsyncIterable[OutputT]],
]
stream(
call: StreamFunction[StateT, DepsT, InputT, OutputT],
*,
node_id: str | None = None,
label: str | None = None
) -> Step[StateT, DepsT, InputT, AsyncIterable[OutputT]]
stream(
call: (
StreamFunction[StateT, DepsT, InputT, OutputT]
| None
) = None,
*,
node_id: str | None = None,
label: str | None = None
) -> (
Step[StateT, DepsT, InputT, AsyncIterable[OutputT]]
| Callable[
[StreamFunction[StateT, DepsT, InputT, OutputT]],
Step[StateT, DepsT, InputT, AsyncIterable[OutputT]],
]
)
stream(
call: (
StreamFunction[StateT, DepsT, InputT, OutputT]
| None
) = None,
*,
node_id: str | None = None,
label: str | None = None
) -> (
Step[StateT, DepsT, InputT, AsyncIterable[OutputT]]
| Callable[
[StreamFunction[StateT, DepsT, InputT, OutputT]],
Step[StateT, DepsT, InputT, AsyncIterable[OutputT]],
]
)
Create a step from an async iterator (which functions like a "stream").
This method can be used as a decorator or called directly to create a step node from an async function.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
call
|
StreamFunction[StateT, DepsT, InputT, OutputT] | None
|
The step function to wrap |
None
|
node_id
|
str | None
|
Optional ID for the node |
None
|
label
|
str | None
|
Optional human-readable label |
None
|
Returns:
| Type | Description |
|---|---|
Step[StateT, DepsT, InputT, AsyncIterable[OutputT]] | Callable[[StreamFunction[StateT, DepsT, InputT, OutputT]], Step[StateT, DepsT, InputT, AsyncIterable[OutputT]]]
|
Either a Step instance or a decorator function |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 | |
add
Add one or more edge paths to the graph.
This method processes edge paths and automatically creates any necessary fork nodes for broadcasts and maps.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*edges
|
EdgePath[StateT, DepsT]
|
The edge paths to add to the graph |
()
|
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 | |
add_edge
add_edge(
source: Source[T],
destination: Destination[T],
*,
label: str | None = None
) -> None
Add a simple edge between two nodes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source
|
Source[T]
|
The source node |
required |
destination
|
Destination[T]
|
The destination node |
required |
label
|
str | None
|
Optional label for the edge |
None
|
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 | |
add_mapping_edge
add_mapping_edge(
source: Source[Iterable[T]],
map_to: Destination[T],
*,
pre_map_label: str | None = None,
post_map_label: str | None = None,
fork_id: ForkID | None = None,
downstream_join_id: JoinID | None = None
) -> None
Add an edge that maps iterable data across parallel paths.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source
|
Source[Iterable[T]]
|
The source node that produces iterable data |
required |
map_to
|
Destination[T]
|
The destination node that receives individual items |
required |
pre_map_label
|
str | None
|
Optional label before the map operation |
None
|
post_map_label
|
str | None
|
Optional label after the map operation |
None
|
fork_id
|
ForkID | None
|
Optional ID for the fork node produced for this map operation |
None
|
downstream_join_id
|
JoinID | None
|
Optional ID of a join node that will always be downstream of this map. Specifying this ensures correct handling if you try to map an empty iterable. |
None
|
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 | |
edge_from
Create an edge path builder starting from the given source nodes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
*sources
|
Source[SourceOutputT]
|
The source nodes to start the edge path from |
()
|
Returns:
| Type | Description |
|---|---|
EdgePathBuilder[StateT, DepsT, SourceOutputT]
|
An EdgePathBuilder for constructing the complete edge path |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 | |
decision
decision(
*, note: str | None = None, node_id: str | None = None
) -> Decision[StateT, DepsT, Never]
Create a new decision node.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
note
|
str | None
|
Optional note to describe the decision logic |
None
|
node_id
|
str | None
|
Optional ID for the node produced for this decision logic |
None
|
Returns:
| Type | Description |
|---|---|
Decision[StateT, DepsT, Never]
|
A new Decision node with no branches |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 | |
match
match(
source: TypeOrTypeExpression[SourceT],
*,
matches: Callable[[Any], bool] | None = None
) -> DecisionBranchBuilder[
StateT, DepsT, SourceT, SourceT, Never
]
Create a decision branch matcher.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source
|
TypeOrTypeExpression[SourceT]
|
The type or type expression to match against |
required |
matches
|
Callable[[Any], bool] | None
|
Optional custom matching function |
None
|
Returns:
| Type | Description |
|---|---|
DecisionBranchBuilder[StateT, DepsT, SourceT, SourceT, Never]
|
A DecisionBranchBuilder for constructing the branch |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 | |
match_node
match_node(
source: type[SourceNodeT],
*,
matches: Callable[[Any], bool] | None = None
) -> DecisionBranch[SourceNodeT]
Create a decision branch for BaseNode subclasses.
This is similar to match() but specifically designed for matching against BaseNode types.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
source
|
type[SourceNodeT]
|
The |
required |
matches
|
Callable[[Any], bool] | None
|
Optional custom matching function |
None
|
Returns:
| Type | Description |
|---|---|
DecisionBranch[SourceNodeT]
|
A |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 | |
node
Create an edge path from a BaseNode class.
This method integrates a BaseNode subclass into the builder graph by
analyzing its run return type hints and creating appropriate edges.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
node_type
|
type[BaseNode[StateT, DepsT, GraphOutputT]]
|
The |
required |
Returns:
| Type | Description |
|---|---|
EdgePath[StateT, DepsT]
|
An |
Raises:
| Type | Description |
|---|---|
GraphSetupError
|
If the node type is missing required type hints |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 | |
build
Build the final executable graph from the accumulated nodes and edges.
This method performs validation, normalization, and analysis of the graph structure to create a complete, executable graph instance.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
validate_graph_structure
|
bool
|
whether to perform validation of the graph structure See the docstring of _validate_graph_structure below for more details. |
True
|
Returns:
| Type | Description |
|---|---|
Graph[StateT, DepsT, GraphInputT, GraphOutputT]
|
A complete Graph instance ready for execution |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the graph structure is invalid (e.g., join without parent fork) |
Source code in pydantic_graph/pydantic_graph/graph_builder.py
1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 | |
DEFAULT_HIGHLIGHT_CSS
module-attribute
DEFAULT_HIGHLIGHT_CSS = 'fill:#fdff32'
The default CSS to use for highlighting nodes.
StateDiagramDirection
module-attribute
StateDiagramDirection = Literal['TB', 'LR', 'RL', 'BT']
Used to specify the direction of the state diagram generated by mermaid.
'TB': Top to bottom, this is the default for mermaid charts.'LR': Left to right'RL': Right to left'BT': Bottom to top
MermaidNode
dataclass
A mermaid node.
Source code in pydantic_graph/pydantic_graph/graph_builder.py
2127 2128 2129 2130 2131 2132 2133 2134 | |
MermaidEdge
dataclass
A mermaid edge.
Source code in pydantic_graph/pydantic_graph/graph_builder.py
2137 2138 2139 2140 2141 2142 2143 | |
build_mermaid_graph
build_mermaid_graph(
graph_nodes: dict[NodeID, AnyNode],
graph_edges_by_source: dict[NodeID, list[Path]],
) -> MermaidGraph
Build a mermaid graph.
Source code in pydantic_graph/pydantic_graph/graph_builder.py
2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 | |
MermaidGraph
dataclass
A mermaid graph.
Source code in pydantic_graph/pydantic_graph/graph_builder.py
2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 | |