Migrating from PocketFlow
BrainyFlow is an asynchronous successor to PocketFlow, designed for enhanced performance and concurrency. Migrating is straightforward:
Key Changes
All core methods are now async
prep()
,exec()
,post()
,_exec()
,_run()
, andrun()
methods now useasync/await
syntaxAll method calls to these functions must now be awaited
Simplified class hierarchy
Removed separate async classes (
AsyncNode
,AsyncFlow
, etc.)All classes now use async methods by default
Batch processing changes
BatchNode
→SequentialBatchNode
(sequential processing) orParallelBatchNode
(concurrent processing)BatchFlow
→SequentialBatchFlow
(sequential processing) orParallelBatchFlow
(concurrent processing)
Why Async?
The move to async brings several benefits:
Improved performance: Asynchronous code can handle I/O-bound operations more efficiently
Better concurrency: Easier to implement parallel processing patterns
Simplified codebase: No need for separate sync and async implementations
Modern Python: Aligns with Python's direction for handling concurrent operations
Migration Steps
Step 1: Update Imports
Replace pocketflow
imports with brainyflow
and add import asyncio
.
Step 2: Add async
/ await
:
async
/ await
:Add
async
beforedef
for yourprep
,exec
,post
, andexec_fallback
methods in Nodes and Flows.Add
await
before any calls to these methods,run()
methods,asyncio.sleep()
, or other async library functions.
Node Example (Before):
Node Example (After):
(Flow methods follow the same pattern)
Step 3: Rename Classes
As we got rid of separated async classes, AsyncNode
and AsyncFlow
are now just Node
and Flow
.
BrainyFlow makes the choice between sequential vs. parallel batch processing explicit:
If you used
BatchNode
(orAsyncBatchNode
) -> UseSequentialBatchNode
.If you used
BatchFlow
(orAsyncBatchFlow
) -> UseSequentialBatchFlow
.If you used
AsyncParallelBatchNode
-> UseParallelBatchNode
.If you used
AsyncParallelBatchFlow
-> UseParallelBatchFlow
.
Remember to make their methods (exec
, prep
, post
) async
as per Step 2.
Step 4: Run with asyncio
:
asyncio
:BrainyFlow code must be run within an async event loop. The standard way is using asyncio.run()
:
Conclusion
Migrating from PocketFlow to BrainyFlow primarily involves:
Updating imports to
brainyflow
and addingimport asyncio
.Adding
async
to your Node/Flow method definitions (prep
,exec
,post
,exec_fallback
).Using
await
when callingrun()
methods and any other asynchronous operations within your methods.Replacing
BatchNode
/BatchFlow
with the appropriateSequential*
orParallel*
BrainyFlow classes.Running your main execution logic within an
async def main()
function called byasyncio.run()
.
This transition enables you to leverage the performance and concurrency benefits of asynchronous programming in your workflows.
Last updated