mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-05-04 16:52:37 +00:00
Flow.from_checkpoint deserialized the checkpoint_* fields but never copied them back into the private execution attrs (_completed_methods, _method_outputs, _method_execution_counts, _state). Calling kickoff() after from_checkpoint would restart from scratch. Add _restore_from_checkpoint that copies the checkpoint fields into the private attrs, using the existing _restore_state method for state reconstruction.