I have a flow with a sequence of methods that depend on each other:
Method 1 → Method 2 → Method 3
I’d like to persist the state of the flow and run only method 3 from the state generated by methods 1 and 2. I’m doing this because I’m developing method 3 and I don’t want to waste time and resources recalculating methods 1 and 2 each time.
What’s the best way of achieving this with crewai?
Thanks!