Skip to content

Commit

Permalink
Add missing property
Browse files Browse the repository at this point in the history
  • Loading branch information
nfcampos committed Nov 19, 2024
1 parent 97dd307 commit d63bfc6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions libs/langgraph/langgraph/pregel/debug.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,14 @@ def map_debug_checkpoint(
"state": t.state,
}
if t.error
else {
"id": t.id,
"name": t.name,
"result": t.result,
"interrupts": tuple(asdict(i) for i in t.interrupts),
"state": t.state,
}
if t.result
else {
"id": t.id,
"name": t.name,
Expand Down

0 comments on commit d63bfc6

Please sign in to comment.