File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ def create_tutorial_flow():
1414
1515 # Instantiate nodes
1616 fetch_repo = FetchRepo ()
17- identify_abstractions = IdentifyAbstractions (max_retries = 3 , wait = 10 )
18- analyze_relationships = AnalyzeRelationships (max_retries = 3 , wait = 10 )
19- order_chapters = OrderChapters (max_retries = 3 , wait = 10 )
20- write_chapters = WriteChapters (max_retries = 3 , wait = 10 ) # This is a BatchNode
17+ identify_abstractions = IdentifyAbstractions (max_retries = 5 , wait = 20 )
18+ analyze_relationships = AnalyzeRelationships (max_retries = 5 , wait = 20 )
19+ order_chapters = OrderChapters (max_retries = 5 , wait = 20 )
20+ write_chapters = WriteChapters (max_retries = 5 , wait = 20 ) # This is a BatchNode
2121 combine_tutorial = CombineTutorial ()
2222
2323 # Connect nodes in sequence based on the design
@@ -30,4 +30,4 @@ def create_tutorial_flow():
3030 # Create the flow starting with FetchRepo
3131 tutorial_flow = Flow (start = fetch_repo )
3232
33- return tutorial_flow
33+ return tutorial_flow
You can’t perform that action at this time.
0 commit comments