mirror of
https://github.com/langchain-ai/langgraph.git
synced 2026-08-20 06:35:46 +02:00
- Replaces checkpoint_during: bool - checkpoint_during is deprecated but still respected - We implement three durability modes (from least to most durable): - "exit" - save checkpoint only when the graph exits (equivalent to checkpoint_during=False) - "async" - save checkpoint asynchronously while the next step executes (the default, equivalent to old checkpoint_during=True) - "sync" - save checkpoint synchronously before the next step starts (new mode, slower but most durable) Co-authored-by: Sydney Runkle <54324534+sydney-runkle@users.noreply.github.com>