diff --git a/cookbook/pocketflow-structured-output/main.py b/cookbook/pocketflow-structured-output/main.py index 01cc5d3..1667504 100644 --- a/cookbook/pocketflow-structured-output/main.py +++ b/cookbook/pocketflow-structured-output/main.py @@ -129,7 +129,7 @@ if __name__ == "__main__": shared["target_skills"] = target_skills_to_find # --- Define and Run Flow --- - parser_node = ResumeParserNode() + parser_node = ResumeParserNode(max_retries=3, wait=10) flow = Flow(start=parser_node) flow.run(shared) # Execute the parsing node