Skip to content

Commit 0f4152c

Browse files
authored
Update flow.py
1 parent 358f879 commit 0f4152c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

flow.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)