From 0f4152cc165bc941132a492cc8b786c247c795e8 Mon Sep 17 00:00:00 2001 From: Zachary Huang <33015448+zachary62@users.noreply.github.com> Date: Tue, 22 Apr 2025 08:38:36 -0400 Subject: [PATCH] Update flow.py --- flow.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flow.py b/flow.py index 51813f8..09caa12 100644 --- a/flow.py +++ b/flow.py @@ -14,10 +14,10 @@ def create_tutorial_flow(): # Instantiate nodes fetch_repo = FetchRepo() - identify_abstractions = IdentifyAbstractions(max_retries=3, wait=10) - analyze_relationships = AnalyzeRelationships(max_retries=3, wait=10) - order_chapters = OrderChapters(max_retries=3, wait=10) - write_chapters = WriteChapters(max_retries=3, wait=10) # This is a BatchNode + identify_abstractions = IdentifyAbstractions(max_retries=5, wait=20) + analyze_relationships = AnalyzeRelationships(max_retries=5, wait=20) + order_chapters = OrderChapters(max_retries=5, wait=20) + write_chapters = WriteChapters(max_retries=5, wait=20) # This is a BatchNode combine_tutorial = CombineTutorial() # Connect nodes in sequence based on the design @@ -30,4 +30,4 @@ def create_tutorial_flow(): # Create the flow starting with FetchRepo tutorial_flow = Flow(start=fetch_repo) - return tutorial_flow \ No newline at end of file + return tutorial_flow