From d7d626698d205af03d57b342086ad7613130923a Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Fri, 16 May 2025 17:42:51 +0200 Subject: [PATCH] Changing number of rounds --- cognee/complex_demos/crewai_demo/src/crewai_demo/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cognee/complex_demos/crewai_demo/src/crewai_demo/main.py b/cognee/complex_demos/crewai_demo/src/crewai_demo/main.py index d6b528aee..257e53274 100644 --- a/cognee/complex_demos/crewai_demo/src/crewai_demo/main.py +++ b/cognee/complex_demos/crewai_demo/src/crewai_demo/main.py @@ -40,7 +40,7 @@ def run(enable_ingestion=True, enable_crew=True): run_github_ingestion(applicants["applicant_1"], applicants["applicant_2"]) if enable_crew: - run_hiring_crew(applicants=applicants, number_of_rounds=3) + run_hiring_crew(applicants=applicants, number_of_rounds=5) except Exception as e: raise Exception(f"An error occurred while running the process: {e}")